From f59eb3b2194826c73f56161497f4004b2313efa2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 5 Feb 2004 00:19:57 +0000 Subject: renamed (Const)Iterator to (const_)iterator; changed size() to return an uint svn-id: r12722 --- sky/sky.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sky') diff --git a/sky/sky.cpp b/sky/sky.cpp index 57e7e7d4ae..08d7b40c1c 100644 --- a/sky/sky.cpp +++ b/sky/sky.cpp @@ -88,7 +88,7 @@ GameList Engine_SKY_gameList() { DetectedGameList Engine_SKY_detectGames(const FSList &fslist) { DetectedGameList detectedGames; // 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 *fileName = file->displayName().c_str(); if (0 == scumm_stricmp("sky.dsk", fileName)) { -- cgit v1.2.3