Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4873 in orxonox.OLD for orxonox/trunk/src/lib/lang


Ignore:
Timestamp:
Jul 15, 2005, 12:37:31 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: temporary fix in the EvenetHandler
EVENT_NUMBER is not a maximum value of events, but merely a count of how many differnent kinds of events there are
FIXME

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/lang/class_list.cc

    r4872 r4873  
    211211 * @param classID the class that should be displayed (if CL_NULL (default) all classes will be displayed)
    212212 */
    213     void ClassList::debug(unsigned int debugLevel, long classID)
     213void ClassList::debug(unsigned int debugLevel, long classID)
    214214{
    215215  if (debugLevel > 3)
     
    244244        while (enumBO)
    245245        {
    246           PRINT(0)("|   (class %s): NAME(%s)->%p\n", enumBO->getClassName(), enumBO->getName(), enumBO);
     246          PRINT(0)("|   (class %s): NAME(%s)->%p ", enumBO->getClassName(), enumBO->getName(), enumBO);
    247247          if (debugLevel == 3)
    248248            enumBO->whatIs();
     249          else
     250          {
     251            PRINT(0)("\n");
     252          }
    249253          enumBO = iterator->nextElement();
    250254        }
Note: See TracChangeset for help on using the changeset viewer.