[Scummvm-cvs-logs] CVS: scummvm/backends/wince CELauncherDialog.cpp,1.1,1.2

Max Horn fingolfin at users.sourceforge.net
Wed Feb 4 16:23:48 CET 2004


Update of /cvsroot/scummvm/scummvm/backends/wince
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6094/backends/wince

Modified Files:
	CELauncherDialog.cpp 
Log Message:
renamed (Const)Iterator to (const_)iterator; changed size() to return an uint

Index: CELauncherDialog.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/wince/CELauncherDialog.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CELauncherDialog.cpp	26 Jan 2004 08:20:26 -0000	1.1
+++ CELauncherDialog.cpp	5 Feb 2004 00:19:53 -0000	1.2
@@ -99,7 +99,7 @@
 	addCandidate(node->path(), candidates);
 	// Then recurse on the subdirectories
 	FSList *dirs = node->listDir(FilesystemNode::kListDirectoriesOnly);
-	for (FSList::ConstIterator currentDir = dirs->begin(); currentDir != dirs->end(); ++currentDir)
+	for (FSList::const_iterator currentDir = dirs->begin(); currentDir != dirs->end(); ++currentDir)
 		automaticScanDirectory(&(*currentDir));
 
 }





More information about the Scummvm-git-logs mailing list