Changeset 6383 in orxonox.OLD for branches/preferences/src/lib
- Timestamp:
- Jan 2, 2006, 1:09:56 AM (19 years ago)
- Location:
- branches/preferences/src/lib
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/preferences/src/lib/Makefile.am
r6380 r6383 72 72 particles \ 73 73 collision_detection \ 74 network \74 network \ 75 75 parser \ 76 76 shell \ -
branches/preferences/src/lib/parser/Makefile.am
r5944 r6383 1 1 SUBDIRS = \ 2 2 tinyxml \ 3 ini_parser 3 ini_parser \ 4 preferences 4 5 5 6 -
branches/preferences/src/lib/util/preferences.cc
r6381 r6383 59 59 std::list<prefItem>::const_iterator it2 = it->items.begin(); 60 60 61 for ( ; it2!=it->items. begin(); it2++)61 for ( ; it2!=it->items.end(); it2++) 62 62 { 63 63 if ( strcmp(it2->name, name) == 0 ) … … 157 157 std::list<prefItem>::iterator it2 = it->items.begin(); 158 158 159 for ( ; it2!=it->items. begin(); it2++)159 for ( ; it2!=it->items.end(); it2++) 160 160 { 161 161 if ( strcmp(it2->name, name) == 0 ) … … 203 203 std::list<prefItem>::const_iterator it2 = it->items.begin(); 204 204 205 for ( ; it2!=it->items. begin(); it2++)205 for ( ; it2!=it->items.end(); it2++) 206 206 { 207 207 if ( strcmp(it2->name, name) == 0 ) … … 230 230 std::list<prefItem>::iterator it2 = it->items.begin(); 231 231 232 for ( ; it2!=it->items. begin(); it2++)232 for ( ; it2!=it->items.end(); it2++) 233 233 { 234 234 PRINTF(0)("--> %s = '%s'\n", it2->name, it2->value.getString());
Note: See TracChangeset
for help on using the changeset viewer.