Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2010, 1:37:33 PM (14 years ago)
Author:
dafrick
Message:

Config values can now be changed in a menu.

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

Legend:

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

    r6763 r7012  
    321321    }
    322322
    323     void GUIManager::keyPressed(const KeyEvent& evt)
     323    void GUIManager::buttonPressed(const KeyEvent& evt)
    324324    {
    325325        this->protectedCall(boost::bind(&CEGUI::System::injectKeyDown, _1, evt.getKeyCode()));
     
    327327    }
    328328
    329     void GUIManager::keyReleased(const KeyEvent& evt)
     329    void GUIManager::buttonReleased(const KeyEvent& evt)
    330330    {
    331331        this->protectedCall(boost::bind(&CEGUI::System::injectKeyUp, _1, evt.getKeyCode()));
  • code/branches/presentation3/src/libraries/core/GUIManager.h

    r6996 r7012  
    113113
    114114        // keyHandler functions
    115         void keyPressed (const KeyEvent& evt);
    116         void keyReleased(const KeyEvent& evt);
     115        void buttonPressed (const KeyEvent& evt);
     116        void buttonReleased(const KeyEvent& evt);
    117117
    118118        // mouseHandler functions
Note: See TracChangeset for help on using the changeset viewer.