window.cpp: connect searchCancelled signal to proper slot

This commit is contained in:
Albert S. 2018-01-17 22:44:20 +01:00
父節點 687f88f226
當前提交 4b9ccc50da
共有 2 個文件被更改,包括 2 次插入4 次删除

4
BUGS
查看文件

@ -1,4 +1,2 @@
Type to fast and search must be triggered again (queues don't work as intended). Here,
we may need proper mutexes.
SearchWorker: isPending etc. may need proper locking (with mutexes)
Memory leaks(ignored for now due to short-running nature of the application)

查看文件

@ -14,7 +14,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "window.h"
#include <QDebug>
#include <QProcess>
#include <QProcessEnvironment>
#include <QDirIterator>
@ -34,6 +33,7 @@ Window::Window(const QVector<EntryConfig> &configs, const QString &dbpath)
connect(this, &Window::beginFileSearch, searchWorker, &SearchWorker::searchForFile);
connect(this, &Window::beginContentSearch, searchWorker, &SearchWorker::searchForContent);
connect(searchWorker, &SearchWorker::searchResultsReady, this, &Window::handleSearchResults);
connect(searchWorker, &SearchWorker::searchCancelled, this, &Window::handleCancelledSearch);
searchThread.start();
initTreeWidgets();
this->lineEdit->installEventFilter(this);