svn-id: r48240
This commit is contained in:
Max Horn 2010-03-11 23:40:40 +00:00
parent 77fc15ce82
commit 6e78fdc161
2 changed files with 1 additions and 3 deletions

View File

@ -440,7 +440,7 @@ void GuiManager::animateCursor() {
bool GuiManager::checkScreenChange() {
int tmpScreenChangeID = _system->getScreenChangeID();
if (_lastScreenChangeID != tmpScreenChangeID) {
GuiManager::screenChange();
screenChange();
return true;
}
return false;

View File

@ -120,8 +120,6 @@ public:
virtual bool handleKeyUp(Common::KeyState state) { return false; } // Return true if the event was handled
virtual void handleTickle() {}
virtual void reflowLayout() { GuiObject::reflowLayout(); }
void draw();
void receivedFocus() { _hasFocus = true; receivedFocusWidget(); }
void lostFocus() { _hasFocus = false; lostFocusWidget(); }