Welcome, Guest! Log In | Create Account

Changeset 45637

Show
Ignore:
Timestamp:
11/03/09 20:47:10 (2 months ago)
Author:
fingolfin
Message:

SCI: Fix warning (declaration of 'FOO' shadows a member of 'this')

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • scummvm/trunk/engines/sci/gui/gui_menu.h

    r45634 r45637  
    4747        Common::String text; 
    4848 
    49         GuiMenuEntry(uint16 id) 
    50          : id(id) { } 
     49        GuiMenuEntry(uint16 id_) 
     50         : id(id_) { } 
    5151}; 
    5252typedef Common::List<GuiMenuEntry *> GuiMenuList; 
     
    6464        Common::String textRightAligned; 
    6565 
    66         GuiMenuItemEntry(uint16 menuId, uint16 id) 
    67          : menuId(menuId), id(id), 
     66        GuiMenuItemEntry(uint16 menuId_, uint16 id_) 
     67         : menuId(menuId_), id(id_), 
    6868                enabled(true), tag(0), keyPress(0), keyModifier(0), separatorLine(false) { } 
    6969};