Changeset 6285 for trunk/console/src/console_print.cpp
- Timestamp:
- 06/14/08 03:49:08 (7 months ago)
- Files:
-
- 1 modified
-
trunk/console/src/console_print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/console/src/console_print.cpp
r6244 r6285 204 204 waddch(winMain->Win(), '\n'); 205 205 206 GroupList *g = gUserManager.LockGroupList(LOCK_R); 207 for (GroupList::iterator i = g->begin(); i != g->end(); i++, j++) 206 FOR_EACH_GROUP_START_SORTED(LOCK_R) 208 207 { 209 208 PrintBoxLeft(); 210 209 winMain->wprintf("%A%C%3d. %-19s", 211 210 m_cColorGroupList->nAttr, 212 m_cColorGroupList->nColor, j, *i);211 m_cColorGroupList->nColor, j, pGroup->name().c_str()); 213 212 PrintBoxRight(26); 214 } 215 gUserManager.UnlockGroupList(); 213 ++j; 214 } 215 FOR_EACH_GROUP_END 216 216 217 217 waddch(winMain->Win(), ACS_LTEE);
