diff options
Diffstat (limited to 'gui/input.cpp')
-rw-r--r-- | gui/input.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/input.cpp b/gui/input.cpp index e4020745c..61b0cff1f 100644 --- a/gui/input.cpp +++ b/gui/input.cpp @@ -216,7 +216,6 @@ GUIInput::~GUIInput() if (mInputText) delete mInputText; if (mBackground) delete mBackground; if (mCursor) delete mCursor; - if (mFont) delete mFont; if (mAction) delete mAction; } @@ -592,8 +591,10 @@ int GUIInput::NotifyTouch(TOUCH_STATE state, int x, int y) return 0; } -int GUIInput::NotifyVarChange(std::string varName, std::string value) +int GUIInput::NotifyVarChange(const std::string& varName, const std::string& value) { + GUIObject::NotifyVarChange(varName, value); + if (varName == mVariable && !isLocalChange) { HandleTextLocation(-1003); return 0; |