1
0
Fork 0

Use SLOT for both uses of QTimer::singleShot

(fix Qt < 5.4 build)
This commit is contained in:
Rebecca N. Palmer 2015-11-24 18:40:54 +00:00
parent 2d1c5d47ee
commit cc725c61de

View file

@ -329,7 +329,7 @@ private slots:
m_search.reset();
emit searchComplete();
} else {
QTimer::singleShot(100, this, &NavSearchModel::onSearchResultsPoll);
QTimer::singleShot(100, this, SLOT(onSearchResultsPoll()));
}
}