[Scummvm-cvs-logs] CVS: scummvm/sword2 sword2.cpp,1.102,1.103

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


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

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

Index: sword2.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword2/sword2.cpp,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -d -r1.102 -r1.103
--- sword2.cpp	8 Jan 2004 13:03:50 -0000	1.102
+++ sword2.cpp	5 Feb 2004 00:19:57 -0000	1.103
@@ -68,7 +68,7 @@
 
 	for (g = sword2_settings; g->name; ++g) {
 		// Iterate over all files in the given directory
-		for (FSList::ConstIterator file = fslist.begin(); file != fslist.end(); ++file) {
+		for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) {
 			const char *gameName = file->displayName().c_str();
 
 			if (0 == scumm_stricmp(g->detectname, gameName)) {





More information about the Scummvm-git-logs mailing list