mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Revert the singleton PR
It turns out that this isn't working the way it was intended to. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
400b218f76
commit
9ae7040a91
15 changed files with 118 additions and 89 deletions
|
@ -134,8 +134,11 @@ QString DiveListSortModel::tripShortDate(const QString §ion)
|
|||
return QStringLiteral("%1\n'%2").arg(firstMonth,firstTime.toString("yy"));
|
||||
}
|
||||
|
||||
DiveListModel *DiveListModel::m_instance = NULL;
|
||||
|
||||
DiveListModel::DiveListModel(QObject *parent) : QAbstractListModel(parent)
|
||||
{
|
||||
m_instance = this;
|
||||
}
|
||||
|
||||
void DiveListModel::insertDive(int i)
|
||||
|
@ -271,6 +274,11 @@ QString DiveListModel::startAddDive()
|
|||
return QString::number(d->id);
|
||||
}
|
||||
|
||||
DiveListModel *DiveListModel::instance()
|
||||
{
|
||||
return m_instance;
|
||||
}
|
||||
|
||||
struct dive *DiveListModel::getDive(int i)
|
||||
{
|
||||
if (i < 0 || i >= dive_table.nr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue