From f809b8a014f08cf7729df69c12029c5e2197ce9d Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 21 Jun 2009 15:04:46 +0000 Subject: [PATCH] - Fixing compiling with Qt 4.3 --- src/searchEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/searchEngine.cpp b/src/searchEngine.cpp index 5d0357c9f..b7817b49e 100644 --- a/src/searchEngine.cpp +++ b/src/searchEngine.cpp @@ -306,7 +306,7 @@ void SearchEngine::downloadFinished(int exitcode, QProcess::ExitStatus) { } } qDebug("Deleting downloadProcess"); - downloaders.removeOne(downloadProcess); + downloaders.removeAll(downloadProcess); delete downloadProcess; }