diff options
-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; |