From d43d68122b1dfa2bb02eb0807cbbb807b5ddaae7 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 25 Jul 2007 07:22:32 +0000 Subject: [PATCH] BUGFIX: The number of search results was not reset when clicking on 'Clear' button --- Changelog | 1 + src/searchEngine.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog b/Changelog index 176d3d596..4d3bb61a3 100644 --- a/Changelog +++ b/Changelog @@ -40,6 +40,7 @@ - BUGFIX: Workaround to build on Fedora system (pkg-config problem) - BUGFIX: search plugin update - do not display only last version changelog - BUGFIX: Search plugin update - fixed missing new lines in changelog + - BUGFIX: The number of search results was not reset when clicking on 'Clear' button - COSMETIC: Redesigned torrent properties a little - COSMETIC: Redesigned options a little - COSMETIC: Display more logs messages concerning features diff --git a/src/searchEngine.cpp b/src/searchEngine.cpp index e1fbe1d73..006a2426f 100644 --- a/src/searchEngine.cpp +++ b/src/searchEngine.cpp @@ -564,6 +564,7 @@ void SearchEngine::on_clear_button_clicked(){ // Disable clear & download buttons clear_button->setEnabled(false); download_button->setEnabled(false); + results_lbl->setText(tr("Results")+" (0):"); } // Download selected items in search results list