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

@ -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()