window.cpp: connect searchCancelled signal to proper slot

Este commit está contenido en:
Albert S. 2018-01-17 22:44:20 +01:00
padre 687f88f226
commit 4b9ccc50da
Se han modificado 2 ficheros con 2 adiciones y 4 borrados

4
BUGS
Ver fichero

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

Ver fichero

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