Fix crash when reloading folder
This commit is contained in:
parent
737b2908a5
commit
dbc722a1e6
@ -71,6 +71,12 @@ ImageRingList::ImageRingList(QObject *parent) : QObject(parent)
|
||||
connect(&m_fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(dirChanged(QString)));
|
||||
}
|
||||
|
||||
ImageRingList::~ImageRingList()
|
||||
{
|
||||
QThreadPool::globalInstance()->clear();
|
||||
QThreadPool::globalInstance()->waitForDone();
|
||||
}
|
||||
|
||||
bool ImageRingList::setDir(const QString path, const QString ¤tFile)
|
||||
{
|
||||
QDir dir(path);
|
||||
|
@ -45,6 +45,7 @@ class ImageRingList : public QObject
|
||||
bool m_liveMode;
|
||||
public:
|
||||
explicit ImageRingList(QObject *parent = 0);
|
||||
~ImageRingList();
|
||||
bool setDir(const QString path, const QString ¤tFile = QString());
|
||||
void setFile(const QString &file);
|
||||
ImagePtr currentImage();
|
||||
|
Loading…
x
Reference in New Issue
Block a user