[Scummvm-cvs-logs] SF.net SVN: scummvm:[42418] scummvm/trunk/gui/ListWidget.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sun Jul 12 16:29:59 CEST 2009


Revision: 42418
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42418&view=rev
Author:   lordhoto
Date:     2009-07-12 14:29:59 +0000 (Sun, 12 Jul 2009)

Log Message:
-----------
Fix typo, which in fact fixes bug #2820353 "GUI: Search doesn't handle uppercase properly".

Modified Paths:
--------------
    scummvm/trunk/gui/ListWidget.cpp

Modified: scummvm/trunk/gui/ListWidget.cpp
===================================================================
--- scummvm/trunk/gui/ListWidget.cpp	2009-07-12 11:02:47 UTC (rev 42417)
+++ scummvm/trunk/gui/ListWidget.cpp	2009-07-12 14:29:59 UTC (rev 42418)
@@ -564,7 +564,7 @@
 		// 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;
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list