aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickshadereffect_p.h
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@qt.io>2020-06-08 13:01:04 +0200
committerPaul Olav Tvete <paul.tvete@qt.io>2020-06-10 06:02:04 +0200
commitbb906cecec40b7de6a39d97f7c07a883de40195d (patch)
treec7fd7711bd24500ea4e5e941082504decad4f525 /src/quick/items/qquickshadereffect_p.h
parent4fd3ad8c4689fc40c4ca549bba95632dc4d1a990 (diff)
Remove QQuickGenericShaderEffect
Keep it as an internal class for now, with the name QQuickShaderEffectImpl, and move it to qquickshadereffect.cpp. In the long term, we want to get rid of the extra QObject, but that requires careful untangling of the connections and the timing of cleanup at destruction. Task-number: QTBUG-83977 Change-Id: I6513bd0d8fc8522a15049b70ab43fc222088e7d0 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/quick/items/qquickshadereffect_p.h')
-rw-r--r--src/quick/items/qquickshadereffect_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/items/qquickshadereffect_p.h b/src/quick/items/qquickshadereffect_p.h
index 504a1efcf1..b895353272 100644
--- a/src/quick/items/qquickshadereffect_p.h
+++ b/src/quick/items/qquickshadereffect_p.h
@@ -60,7 +60,7 @@ QT_REQUIRE_CONFIG(quick_shadereffect);
QT_BEGIN_NAMESPACE
-class QQuickGenericShaderEffect;
+class QQuickShaderEffectImpl;
class QQuickShaderEffectPrivate;
class Q_QUICK_PRIVATE_EXPORT QQuickShaderEffect : public QQuickItem
@@ -137,7 +137,7 @@ protected:
void itemChange(ItemChange change, const ItemChangeData &value) override;
private:
- QQuickGenericShaderEffect *m_impl;
+ QQuickShaderEffectImpl *m_impl;
Q_DECLARE_PRIVATE(QQuickShaderEffect)
};