Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7635 in orxonox.OLD for branches/qt_gui/src/lib/event/key_mapper.cc


Ignore:
Timestamp:
May 17, 2006, 10:12:33 AM (18 years ago)
Author:
bensch
Message:

orxonox/qt_gui: less debug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/event/key_mapper.cc

    r7256 r7635  
    7171 * and you do not have to care about The namings, as they might change
    7272 */
    73 orxKeyMapping map[] = {
     73KeyMapper::KeyMapping KeyMapper::map[] = {
    7474  {&KeyMapper::PEV_FORWARD,              CONFIG_NAME_PLAYER_FORWARD},
    7575  {&KeyMapper::PEV_BACKWARD,             CONFIG_NAME_PLAYER_BACKWARD},
     
    104104  {&KeyMapper::PEV_PAUSE,                CONFIG_NAME_PAUSE},
    105105  {&KeyMapper::PEV_QUIT,                 CONFIG_NAME_QUIT},
    106   {NULL, NULL}
     106  {NULL, ""}
    107107};
    108108
     
    266266  for(int i = 0; map[i].pValue != NULL; ++i)
    267267    {
    268       PRINT(0)("%s = %i\n",map[i].pName, *map[i].pValue);
     268      PRINT(0)("%s = %i\n",map[i].pName.c_str(), *map[i].pValue);
    269269    }
    270270  PRINT(0)("=======================================================\n");
Note: See TracChangeset for help on using the changeset viewer.