diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-01-16 12:44:18 +0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-16 12:44:18 +0700 |
commit | 2e08f75618e6ff86e37de5e1ee0100a31cc8efb7 (patch) | |
tree | a1fee0b149ab9dbb357663a8d45e779ae52f2821 /qt-ui/profile/diveplotdatamodel.cpp | |
parent | 49a4a11a44dace1ac10877f5e109f9dd73a69fa1 (diff) | |
download | subsurface-2e08f75618e6ff86e37de5e1ee0100a31cc8efb7.tar.gz |
Get rid of build warnings
This is just to make it more obvious when new issues get introduced. The
build should always be free of warnings...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveplotdatamodel.cpp')
-rw-r--r-- | qt-ui/profile/diveplotdatamodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp index 4ecf3ebb5..cbe9cfadc 100644 --- a/qt-ui/profile/diveplotdatamodel.cpp +++ b/qt-ui/profile/diveplotdatamodel.cpp @@ -7,7 +7,7 @@ #include "display.h" #include <QDebug> -DivePlotDataModel::DivePlotDataModel(QObject* parent): QAbstractTableModel(parent), plotData(NULL), sampleCount(0) +DivePlotDataModel::DivePlotDataModel(QObject* parent): QAbstractTableModel(parent), sampleCount(0), plotData(NULL) { } |