diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-22 06:42:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-22 10:57:51 -0700 |
commit | 1ecc9b0cc0c4e7ad2b03236a788cf875189f1832 (patch) | |
tree | 15c9c28c046032e22a5ae155b59aa6f502c08848 /qt-models | |
parent | 85dfb88f51098158a5fac52ce432a07625374c70 (diff) | |
download | subsurface-1ecc9b0cc0c4e7ad2b03236a788cf875189f1832.tar.gz |
Address uninitialized member warnings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/diveplotdatamodel.cpp | 5 | ||||
-rw-r--r-- | qt-models/divetripmodel.cpp | 4 | ||||
-rw-r--r-- | qt-models/filtermodels.cpp | 6 | ||||
-rw-r--r-- | qt-models/profileprintmodel.cpp | 1 |
4 files changed, 13 insertions, 3 deletions
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp index 3b3a288b6..f219947ac 100644 --- a/qt-models/diveplotdatamodel.cpp +++ b/qt-models/diveplotdatamodel.cpp @@ -4,7 +4,10 @@ #include "graphicsview-common.h" #include "divelist.h" -DivePlotDataModel::DivePlotDataModel(QObject *parent) : QAbstractTableModel(parent), diveId(0) +DivePlotDataModel::DivePlotDataModel(QObject *parent) : + QAbstractTableModel(parent), + diveId(0), + dcNr(0) { memset(&pInfo, 0, sizeof(pInfo)); } diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp index 4934b8b20..3b08e6838 100644 --- a/qt-models/divetripmodel.cpp +++ b/qt-models/divetripmodel.cpp @@ -350,7 +350,9 @@ int DiveItem::weight() const return tw.grams; } -DiveTripModel::DiveTripModel(QObject *parent) : TreeModel(parent) +DiveTripModel::DiveTripModel(QObject *parent) : + TreeModel(parent), + currentLayout(TREE) { columns = COLUMNS; } diff --git a/qt-models/filtermodels.cpp b/qt-models/filtermodels.cpp index f63ec85b0..6bec97c23 100644 --- a/qt-models/filtermodels.cpp +++ b/qt-models/filtermodels.cpp @@ -292,7 +292,11 @@ void LocationFilterModel::repopulate() anyChecked = false; } -MultiFilterSortModel::MultiFilterSortModel(QObject *parent) : QSortFilterProxyModel(parent), justCleared(false), curr_dive_site(NULL) +MultiFilterSortModel::MultiFilterSortModel(QObject *parent) : + QSortFilterProxyModel(parent), + justCleared(false), + curr_dive_site(NULL), + divesDisplayed(0) { } diff --git a/qt-models/profileprintmodel.cpp b/qt-models/profileprintmodel.cpp index 1f8d918ed..1d01f6a5d 100644 --- a/qt-models/profileprintmodel.cpp +++ b/qt-models/profileprintmodel.cpp @@ -6,6 +6,7 @@ ProfilePrintModel::ProfilePrintModel(QObject *parent) { + fontSize = 12.0; } void ProfilePrintModel::setDive(struct dive *divePtr) |