From 32f1e47effadf6e361f3e6c658ca43a36f37852a Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 12 Jul 2009 14:29:59 +0000 Subject: Fix typo, which in fact fixes bug #2820353 "GUI: Search doesn't handle uppercase properly". svn-id: r42418 --- gui/ListWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/ListWidget.cpp b/gui/ListWidget.cpp index 07d22973ac..8661444cf3 100644 --- a/gui/ListWidget.cpp +++ b/gui/ListWidget.cpp @@ -564,7 +564,7 @@ void ListWidget::setFilter(const String &filter, bool redraw) { // Restrict the list to everything which contains all words in _filter // as substrings, ignoring case. - Common::StringTokenizer tok(filter); + Common::StringTokenizer tok(_filter); String tmp; int n = 0; -- cgit v1.2.3