summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinwoo Kim <kimcinoo.efl@gmail.com>2014-10-21 02:00:04 +0900
committerShinwoo Kim <kimcinoo.efl@gmail.com>2014-10-21 02:00:04 +0900
commit1307410bf481b9f35ca6ea16d8e1de3ca0b1c3e6 (patch)
treeb3aad26f3669887f89e88232bcde6af37a8d41a6
parent101dee79b0d75fd150bbf5dcf68ab8a2748d42f4 (diff)
downloadefl-1307410bf481b9f35ca6ea16d8e1de3ca0b1c3e6.tar.gz
[ecore_input] fix build break - the semicolon
-rw-r--r--src/lib/ecore_input/Ecore_Input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_input/Ecore_Input.h b/src/lib/ecore_input/Ecore_Input.h
index f9f781a7fc..e6e1259c08 100644
--- a/src/lib/ecore_input/Ecore_Input.h
+++ b/src/lib/ecore_input/Ecore_Input.h
@@ -258,8 +258,8 @@ extern "C" {
unsigned int timestamp; /**< Time when the event occurred */
unsigned int modifiers; /**< The combination of modifiers key (SHIT,CTRL,ALT,..)*/
- int x /**< x coordinate relative to window where event happened */
- int y /**< y coordinate relative to window where event happened */
+ int x; /**< x coordinate relative to window where event happened */
+ int y; /**< y coordinate relative to window where event happened */
};
/**