diff options
author | Johannes Schickel | 2009-07-12 14:29:59 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-07-12 14:29:59 +0000 |
commit | 32f1e47effadf6e361f3e6c658ca43a36f37852a (patch) | |
tree | 7069696ad0453105120d7547e418671dc9f31c78 | |
parent | c3ce2087bb42ca43f28cdef332ee2772e6feb6c3 (diff) | |
download | scummvm-rg350-32f1e47effadf6e361f3e6c658ca43a36f37852a.tar.gz scummvm-rg350-32f1e47effadf6e361f3e6c658ca43a36f37852a.tar.bz2 scummvm-rg350-32f1e47effadf6e361f3e6c658ca43a36f37852a.zip |
Fix typo, which in fact fixes bug #2820353 "GUI: Search doesn't handle uppercase properly".
svn-id: r42418
-rw-r--r-- | gui/ListWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |