diff options
author | Anton Lundin <glance@acc.umu.se> | 2013-11-21 00:32:13 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-21 03:35:02 -0800 |
commit | 8aadd4d3726bda224d5215bb810e3e37dff53b28 (patch) | |
tree | a9d18d3d03ba6ab1e5ebffe0c0f58cf2e8a9188a /qt-ui/models.cpp | |
parent | 27d6b2be6e4813a6495d1231a6050cad6c37030a (diff) | |
download | subsurface-8aadd4d3726bda224d5215bb810e3e37dff53b28.tar.gz |
Quiet down warning about return in non-void
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r-- | qt-ui/models.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index 0748cd43e..f837c03c6 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -859,6 +859,7 @@ QVariant TreeModel::data(const QModelIndex& index, int role) const bool TreeItem::setData(const QModelIndex& index, const QVariant& value, int role) { + return false; } QModelIndex TreeModel::index(int row, int column, const QModelIndex& parent) |