Changeset 6383 in orxonox.OLD for branches/preferences
- Timestamp:
- Jan 2, 2006, 1:09:56 AM (19 years ago)
- Location:
- branches/preferences
- Files:
-
- 6 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/preferences/configure.ac
r6274 r6383 603 603 src/lib/particles/Makefile 604 604 src/lib/collision_detection/Makefile 605 605 src/lib/network/Makefile 606 606 src/lib/shell/Makefile 607 607 src/lib/gui/Makefile … … 611 611 src/lib/parser/tinyxml/Makefile 612 612 src/lib/parser/ini_parser/Makefile 613 src/lib/parser/preferences/Makefile 613 614 src/util/Makefile 614 615 src/subprojects/Makefile -
branches/preferences/src/Makefile.am
r6222 r6383 40 40 lib/parser/tinyxml/libtinyxml.a \ 41 41 lib/parser/ini_parser/libIniParser.a \ 42 lib/parser/preferences/libPrefsParser.a \ 42 43 lib/gui/gl_gui/libORXglgui.a \ 43 44 lib/shell/libORXshell.a \ -
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.