Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6303


Ignore:
Timestamp:
Dec 9, 2009, 8:44:41 PM (14 years ago)
Author:
rgrieder
Message:

Removed deprecated method in GUIManager.

Location:
code/branches/presentation2/src/libraries/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/libraries/core/GUIManager.cc

    r6214 r6303  
    241241    }
    242242
    243     void GUIManager::toggleIngameGUI()
    244     {
    245         if ( this->bShowIngameGUI_==false )
    246         {
    247             GUIManager::showGUI("InGameMenu");
    248             this->bShowIngameGUI_ = true;
    249         }
    250         else
    251         {
    252             GUIManager::hideGUI("InGameMenu");
    253             this->bShowIngameGUI_ = false;
    254         }
    255     }
    256    
    257243    void GUIManager::keyESC()
    258244    {
  • code/branches/presentation2/src/libraries/core/GUIManager.h

    r6183 r6303  
    7171        void showGUIExtra(const std::string& name, const std::string& ptr, bool hidePrevious=false, bool showCursor=true);
    7272        static void hideGUI(const std::string& name);
    73         void toggleIngameGUI();
    7473        void keyESC();
    7574        void setBackground(const std::string& name);
Note: See TracChangeset for help on using the changeset viewer.