diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-05-06 08:16:51 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-05-06 08:16:51 (GMT) |
commit | 560ca373e4879f335a0ceeb3f8a769cc0e4297fe (patch) | |
tree | 387936b69a762e8edc7b1547329adcc7e18a6ef2 /src/gui/graphicsview/qgraphicssceneindex.cpp | |
parent | 7d39e871e679be8afc10c7109a5cc396ead886f7 (diff) | |
download | Qt-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.cpp | 4 |
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; } |