diff options
Diffstat (limited to 'src/game/GameView.cpp')
| -rw-r--r-- | src/game/GameView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index 352d9e5..c03ccf5 100644 --- a/src/game/GameView.cpp +++ b/src/game/GameView.cpp @@ -49,7 +49,7 @@ public: void SetShowSplit(bool split) { showSplit = split; } SplitButtonAction * GetSplitActionCallback() { return splitActionCallback; } void SetSplitActionCallback(SplitButtonAction * newAction) { splitActionCallback = newAction; } - virtual void OnMouseUp(int x, int y, unsigned int button) + virtual void OnMouseUnclick(int x, int y, unsigned int button) { if(isButtonDown) { @@ -58,7 +58,7 @@ public: else if(rightDown) DoRightAction(); } - ui::Button::OnMouseUp(x, y, button); + ui::Button::OnMouseUnclick(x, y, button); } virtual void OnMouseMovedInside(int x, int y, int dx, int dy) |
