From 25036b75ffba99c7b01fb2ab4bd632564af78938 Mon Sep 17 00:00:00 2001 From: Matt Mower Date: Fri, 24 Jun 2016 12:30:18 -0500 Subject: Remove unused identifier from NotifyTouch The 'state' parameter in GUIAction::NotifyTouch() is used in the function. Change-Id: I0744c7aa1542d771dbd2916638fbdd53e9681f86 --- gui/action.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/action.cpp b/gui/action.cpp index b471aafe7..7db1f87b5 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -284,7 +284,7 @@ GUIAction::GUIAction(xml_node<>* node) } } -int GUIAction::NotifyTouch(TOUCH_STATE state __unused, int x __unused, int y __unused) +int GUIAction::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused) { if (state == TOUCH_RELEASE) doActions(); -- cgit v1.2.3