summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicssceneindex.cpp
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@nokia.com>2009-06-16 08:26:34 (GMT)
committerAlexis Menard <alexis.menard@nokia.com>2009-06-16 08:26:34 (GMT)
commit3dce31e5eb0fac43d445fb9664f1b68f4cd4c11f (patch)
treeb368f7b97d3a74d53fc46255940ea72050b0ccdf /src/gui/graphicsview/qgraphicssceneindex.cpp
parentda70cf2876cee57299dbeebb86c4c3881e3df721 (diff)
downloadQt-3dce31e5eb0fac43d445fb9664f1b68f4cd4c11f.zip
Qt-3dce31e5eb0fac43d445fb9664f1b68f4cd4c11f.tar.gz
Qt-3dce31e5eb0fac43d445fb9664f1b68f4cd4c11f.tar.bz2
Warnings --
Diffstat (limited to 'src/gui/graphicsview/qgraphicssceneindex.cpp')
-rw-r--r--src/gui/graphicsview/qgraphicssceneindex.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/graphicsview/qgraphicssceneindex.cpp b/src/gui/graphicsview/qgraphicssceneindex.cpp
index 8d18806..3c4efe7 100644
--- a/src/gui/graphicsview/qgraphicssceneindex.cpp
+++ b/src/gui/graphicsview/qgraphicssceneindex.cpp
@@ -395,10 +395,11 @@ void QGraphicsSceneIndex::deleteItem(QGraphicsItem *item)
\sa GraphicsItemChange
*/
-void QGraphicsSceneIndex::itemChanged(const QGraphicsItem *item, QGraphicsItem::GraphicsItemChange, const QVariant &value)
+void QGraphicsSceneIndex::itemChanged(const QGraphicsItem *item, QGraphicsItem::GraphicsItemChange change, const QVariant &value)
{
- //Q_UNUSED(item);
- //Q_UNUSED(value);
+ Q_UNUSED(item);
+ Q_UNUSED(change);
+ Q_UNUSED(value);
}
/*!
@@ -408,7 +409,7 @@ void QGraphicsSceneIndex::itemChanged(const QGraphicsItem *item, QGraphicsItem::
*/
void QGraphicsSceneIndex::prepareBoundingRectChange(const QGraphicsItem *item)
{
- //Q_UNUSED(item);
+ Q_UNUSED(item);
}
/*!
@@ -418,6 +419,7 @@ void QGraphicsSceneIndex::prepareBoundingRectChange(const QGraphicsItem *item)
*/
void QGraphicsSceneIndex::sceneRectChanged(const QRectF &rect)
{
+ Q_UNUSED(rect);
}
QT_END_NAMESPACE