summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicssceneindex.cpp
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@nokia.com>2009-05-06 08:16:51 (GMT)
committerAlexis Menard <alexis.menard@nokia.com>2009-05-06 08:16:51 (GMT)
commit560ca373e4879f335a0ceeb3f8a769cc0e4297fe (patch)
tree387936b69a762e8edc7b1547329adcc7e18a6ef2 /src/gui/graphicsview/qgraphicssceneindex.cpp
parent7d39e871e679be8afc10c7109a5cc396ead886f7 (diff)
downloadQt-560ca373e4879f335a0ceeb3f8a769cc0e4297fe.zip
Qt-560ca373e4879f335a0ceeb3f8a769cc0e4297fe.tar.gz
Qt-560ca373e4879f335a0ceeb3f8a769cc0e4297fe.tar.bz2
Make const when it needs to be.
Diffstat (limited to 'src/gui/graphicsview/qgraphicssceneindex.cpp')
-rw-r--r--src/gui/graphicsview/qgraphicssceneindex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/graphicsview/qgraphicssceneindex.cpp b/src/gui/graphicsview/qgraphicssceneindex.cpp
index 7360bed..86a2fbb 100644
--- a/src/gui/graphicsview/qgraphicssceneindex.cpp
+++ b/src/gui/graphicsview/qgraphicssceneindex.cpp
@@ -104,9 +104,9 @@ QGraphicsSceneIndex::~QGraphicsSceneIndex()
*/
/*!
- Returns the scene of this scene index.
+ Returns the scene of this index.
*/
-QGraphicsScene* QGraphicsSceneIndex::scene()
+QGraphicsScene* QGraphicsSceneIndex::scene() const
{
return m_scene;
}