Fix singleton class ownership

We shouldn't allow Qt parent ownership in here.
This commit is contained in:
Chocobo1 2020-02-07 15:19:23 +08:00
parent fa43dab3a2
commit a6cdba17f0
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
3 changed files with 5 additions and 9 deletions

View file

@ -550,7 +550,7 @@ int Application::exec(const QStringList &params)
#ifndef DISABLE_COUNTRIES_RESOLUTION
Net::GeoIPManager::initInstance();
#endif
ScanFoldersModel::initInstance(this);
ScanFoldersModel::initInstance();
#ifndef DISABLE_WEBUI
m_webui = new WebUI;

View file

@ -57,14 +57,10 @@ struct ScanFoldersModel::PathData
ScanFoldersModel *ScanFoldersModel::m_instance = nullptr;
bool ScanFoldersModel::initInstance(QObject *parent)
void ScanFoldersModel::initInstance()
{
if (!m_instance) {
m_instance = new ScanFoldersModel(parent);
return true;
}
return false;
if (!m_instance)
m_instance = new ScanFoldersModel;
}
void ScanFoldersModel::freeInstance()

View file

@ -65,7 +65,7 @@ public:
CUSTOM_LOCATION
};
static bool initInstance(QObject *parent = nullptr);
static void initInstance();
static void freeInstance();
static ScanFoldersModel *instance();