[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
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/gui EditTextWidget.cpp,1.24,1.25 EditTextWidget.h,1.13,1.14 ListWidget.cpp,1.34,1.35 ListWidget.h,1.20,1.21 PopUpWidget.cpp,1.28,1.29 TabWidget.cpp,1.10,1.11 browser.h,1.12,1.13 chooser.h,1.10,1.11 launcher.cpp,1.84,1.85 message.h,1.12,1.13 newgui.cpp,1.75,1.76
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.140,1.141
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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)) {
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/gui EditTextWidget.cpp,1.24,1.25 EditTextWidget.h,1.13,1.14 ListWidget.cpp,1.34,1.35 ListWidget.h,1.20,1.21 PopUpWidget.cpp,1.28,1.29 TabWidget.cpp,1.10,1.11 browser.h,1.12,1.13 chooser.h,1.10,1.11 launcher.cpp,1.84,1.85 message.h,1.12,1.13 newgui.cpp,1.75,1.76
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.140,1.141
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list