Changeset 45637
- Timestamp:
- 11/03/09 20:47:10 (2 months ago)
- Files:
-
- 1 modified
-
scummvm/trunk/engines/sci/gui/gui_menu.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scummvm/trunk/engines/sci/gui/gui_menu.h
r45634 r45637 47 47 Common::String text; 48 48 49 GuiMenuEntry(uint16 id )50 : id(id ) { }49 GuiMenuEntry(uint16 id_) 50 : id(id_) { } 51 51 }; 52 52 typedef Common::List<GuiMenuEntry *> GuiMenuList; … … 64 64 Common::String textRightAligned; 65 65 66 GuiMenuItemEntry(uint16 menuId , uint16 id)67 : menuId(menuId ), id(id),66 GuiMenuItemEntry(uint16 menuId_, uint16 id_) 67 : menuId(menuId_), id(id_), 68 68 enabled(true), tag(0), keyPress(0), keyModifier(0), separatorLine(false) { } 69 69 };
