summaryrefslogtreecommitdiffstats
path: root/src/effects/shadereffectitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/shadereffectitem.h')
-rw-r--r--src/effects/shadereffectitem.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/effects/shadereffectitem.h b/src/effects/shadereffectitem.h
index 1aa5c5c..db489e3 100644
--- a/src/effects/shadereffectitem.h
+++ b/src/effects/shadereffectitem.h
@@ -69,7 +69,7 @@ class ShaderEffectSource : public QObject
Q_PROPERTY(QSize textureSize READ textureSize WRITE setTextureSize NOTIFY textureSizeChanged)
Q_PROPERTY(int width READ width NOTIFY widthChanged)
Q_PROPERTY(int height READ height NOTIFY heightChanged)
- Q_PROPERTY(bool static READ isStatic WRITE setStatic NOTIFY staticChanged)
+ Q_PROPERTY(bool live READ isLive WRITE setLive NOTIFY liveChanged)
Q_PROPERTY(bool hideOriginal READ hideOriginal WRITE setHideOriginal NOTIFY hideOriginalChanged)
Q_PROPERTY(bool active READ isActive NOTIFY activeChanged)
Q_ENUMS(FilterMode)
@@ -122,8 +122,8 @@ public:
int width() const { return m_size.width(); }
int height() const { return m_size.height(); }
- bool isStatic() const { return m_static; }
- void setStatic(bool s);
+ bool isLive() const { return m_live; }
+ void setLive(bool s);
bool hideOriginal() const { return m_hideOriginal; }
void setHideOriginal(bool hide);
@@ -149,7 +149,7 @@ Q_SIGNALS:
void textureSizeChanged();
void widthChanged();
void heightChanged();
- void staticChanged();
+ void liveChanged();
void hideOriginalChanged();
void activeChanged();
@@ -182,7 +182,7 @@ private:
uint m_dirtySceneGraph : 1; // Causes update if not static.
uint m_multisamplingSupported : 1;
uint m_checkedForMultisamplingSupport : 1;
- uint m_static : 1;
+ uint m_live : 1;
uint m_hideOriginal : 1;
};