summaryrefslogtreecommitdiffstats
path: root/qt-models/divelistmodel.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-09-28 23:05:49 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-10-04 09:19:10 -0700
commit36d42a6a57e8f79de1c8daf01e77a811ef0392dc (patch)
tree313b56c6cc4cba5bb72a52c6390d7f6b6d7f6f6a /qt-models/divelistmodel.cpp
parent2560734624d404728b28ff7c5e7e34a1006a4b36 (diff)
downloadsubsurface-36d42a6a57e8f79de1c8daf01e77a811ef0392dc.tar.gz
Cleanup: turn DiveListModel into standard singleton
DiveListModel was one of those "special" singletons that could be created explicitly with new. This would make sense if a parameter were passed to the constructor. We only passed null, so one might as well turn that into a classical singleton with default constructor. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divelistmodel.cpp')
-rw-r--r--qt-models/divelistmodel.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp
index 39f8fbc47..6d94b09c9 100644
--- a/qt-models/divelistmodel.cpp
+++ b/qt-models/divelistmodel.cpp
@@ -140,11 +140,9 @@ QString DiveListSortModel::tripShortDate(const QString &section)
return QStringLiteral("%1\n'%2").arg(firstMonth,firstTime.toString("yy"));
}
-DiveListModel *DiveListModel::m_instance = NULL;
-
-DiveListModel::DiveListModel(QObject *parent) : QAbstractListModel(parent)
+DiveListModel::DiveListModel()
{
- m_instance = this;
+ LOG_STP("run_ui diveListModel started");
}
void DiveListModel::insertDive(int i)
@@ -297,7 +295,8 @@ QString DiveListModel::startAddDive()
DiveListModel *DiveListModel::instance()
{
- return m_instance;
+ static DiveListModel self;
+ return &self;
}
struct dive *DiveListModel::getDive(int i)