summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-08-04 12:20:41 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-08-04 12:20:41 (GMT)
commit90d4366f1e9657b3240a872698614c7d9747f9e0 (patch)
tree243a891206d22ffb940841fd2e2303cb17bb9723 /src/gui
parentbe212bf108e71ba3b5b75802b1f4de6613ba315c (diff)
downloadQt-90d4366f1e9657b3240a872698614c7d9747f9e0.zip
Qt-90d4366f1e9657b3240a872698614c7d9747f9e0.tar.gz
Qt-90d4366f1e9657b3240a872698614c7d9747f9e0.tar.bz2
Compile with Q_DECLARE_SCOPED_PRIVATE.
These classes were moved so they were not updated correctly when I did the merge.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/graphicsview/qgraphicsscenebsptreeindex_p.h2
-rw-r--r--src/gui/graphicsview/qgraphicssceneindex_p.h2
-rw-r--r--src/gui/graphicsview/qgraphicstransform.h8
-rw-r--r--src/gui/kernel/qstandardgestures.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/graphicsview/qgraphicsscenebsptreeindex_p.h b/src/gui/graphicsview/qgraphicsscenebsptreeindex_p.h
index 2293a8e..01a8957 100644
--- a/src/gui/graphicsview/qgraphicsscenebsptreeindex_p.h
+++ b/src/gui/graphicsview/qgraphicsscenebsptreeindex_p.h
@@ -100,7 +100,7 @@ protected:
void itemChange(const QGraphicsItem *item, QGraphicsItem::GraphicsItemChange change, const QVariant &value);
private :
- Q_DECLARE_PRIVATE(QGraphicsSceneBspTreeIndex)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsSceneBspTreeIndex)
Q_DISABLE_COPY(QGraphicsSceneBspTreeIndex)
Q_PRIVATE_SLOT(d_func(), void _q_updateSortCache())
Q_PRIVATE_SLOT(d_func(), void _q_updateIndex())
diff --git a/src/gui/graphicsview/qgraphicssceneindex_p.h b/src/gui/graphicsview/qgraphicssceneindex_p.h
index 37dffb8..d3dfcc8 100644
--- a/src/gui/graphicsview/qgraphicssceneindex_p.h
+++ b/src/gui/graphicsview/qgraphicssceneindex_p.h
@@ -122,7 +122,7 @@ protected:
friend class QGraphicsSceneBspTreeIndex;
private:
Q_DISABLE_COPY(QGraphicsSceneIndex)
- Q_DECLARE_PRIVATE(QGraphicsSceneIndex)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsSceneIndex)
};
class QGraphicsSceneIndexPrivate : public QObjectPrivate
diff --git a/src/gui/graphicsview/qgraphicstransform.h b/src/gui/graphicsview/qgraphicstransform.h
index d7c07d0..fb3a392 100644
--- a/src/gui/graphicsview/qgraphicstransform.h
+++ b/src/gui/graphicsview/qgraphicstransform.h
@@ -74,7 +74,7 @@ protected:
private:
friend class QGraphicsItem;
friend class QGraphicsItemPrivate;
- Q_DECLARE_PRIVATE(QGraphicsTransform)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsTransform)
};
class QGraphicsScalePrivate;
@@ -106,7 +106,7 @@ Q_SIGNALS:
void scaleChanged();
private:
- Q_DECLARE_PRIVATE(QGraphicsScale)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsScale)
};
class QGraphicsRotationPrivate;
@@ -136,7 +136,7 @@ Q_SIGNALS:
protected:
QGraphicsRotation(QGraphicsRotationPrivate &p, QObject *parent);
private:
- Q_DECLARE_PRIVATE(QGraphicsRotation)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsRotation)
};
class QGraphicsRotation3DPrivate;
@@ -159,7 +159,7 @@ Q_SIGNALS:
void axisChanged();
private:
- Q_DECLARE_PRIVATE(QGraphicsRotation3D)
+ Q_DECLARE_SCOPED_PRIVATE(QGraphicsRotation3D)
};
QT_END_NAMESPACE
diff --git a/src/gui/kernel/qstandardgestures.h b/src/gui/kernel/qstandardgestures.h
index 2234702..a777253 100644
--- a/src/gui/kernel/qstandardgestures.h
+++ b/src/gui/kernel/qstandardgestures.h
@@ -57,7 +57,7 @@ class QPanGesturePrivate;
class Q_GUI_EXPORT QPanGesture : public QGesture
{
Q_OBJECT
- Q_DECLARE_PRIVATE(QPanGesture)
+ Q_DECLARE_SCOPED_PRIVATE(QPanGesture)
Q_PROPERTY(QSize totalOffset READ totalOffset)
Q_PROPERTY(QSize lastOffset READ lastOffset)
@@ -82,7 +82,7 @@ class QTapAndHoldGesturePrivate;
class Q_GUI_EXPORT QTapAndHoldGesture : public QGesture
{
Q_OBJECT
- Q_DECLARE_PRIVATE(QTapAndHoldGesture)
+ Q_DECLARE_SCOPED_PRIVATE(QTapAndHoldGesture)
public:
QTapAndHoldGesture(QWidget *parent);