aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-02-03 10:48:26 +0100
committerEugene Sandulenko2016-02-14 17:12:58 +0100
commit63ef49ec8afa761b89b809811699321c6fe5826e (patch)
tree2cf3034645ebe4315173d8725f8553bfe39930c5 /engines/wage/gui.cpp
parent52c317b842db2bb272f61b1e12af1777c42a38c8 (diff)
downloadscummvm-rg350-63ef49ec8afa761b89b809811699321c6fe5826e.tar.gz
scummvm-rg350-63ef49ec8afa761b89b809811699321c6fe5826e.tar.bz2
scummvm-rg350-63ef49ec8afa761b89b809811699321c6fe5826e.zip
WAGE: Rename mouse event processor to add clarity
Diffstat (limited to 'engines/wage/gui.cpp')
-rw-r--r--engines/wage/gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 6285c487b2..1f07b2a382 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -612,7 +612,7 @@ void Gui::mouseMove(int x, int y) {
}
}
-Designed *Gui::getClickTarget(int x, int y) {
+Designed *Gui::mouseUp(int x, int y) {
if (_menu->_menuActivated) {
if (_menu->mouseRelease(x, y)) {
_sceneDirty = true;
@@ -648,7 +648,7 @@ Designed *Gui::getClickTarget(int x, int y) {
return NULL;
}
-void Gui::mouseClick(int x, int y) {
+void Gui::mouseDown(int x, int y) {
if (_menu->mouseClick(x, y))
_menuDirty = true;
}