Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 28, 2010, 1:51:04 AM (14 years ago)
Author:
landauf
Message:

replaced the temporary names of all ConsoleCommand related classes and functions by their real names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/modules/overlays/hud/GametypeStatus.cc

    r7219 r7236  
    4444    static const std::string __CC_displayCaption_name = "displayCaption";
    4545
    46     _SetConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name, &GametypeStatus::setDisplayCaption);
     46    SetConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name, &GametypeStatus::setDisplayCaption);
    4747
    4848    GametypeStatus::GametypeStatus(BaseObject* creator) : OverlayText(creator)
     
    5353        this->bNoCaption_ = false;
    5454
    55         _ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(this);
     55        ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(this);
    5656    }
    5757
    5858    GametypeStatus::~GametypeStatus()
    5959    {
    60         _ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(0);
     60        ModifyConsoleCommand(__CC_GametypeStatus_name, __CC_displayCaption_name).setObject(0);
    6161    }
    6262
Note: See TracChangeset for help on using the changeset viewer.