diff options
author | Chris Michael <cp.michael@samsung.com> | 2017-06-09 11:01:03 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2017-06-09 12:30:42 -0400 |
commit | d47538dc0e0f839caae248aca60fbf191862c6cd (patch) | |
tree | b91d236a4ff58482d3aeea72f9084b3a671beda2 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 498691d5a3047842fe4e0c15442cf9c5b499679a (diff) |
ecore-wl2: Fix window rotation event structure and various typos
As these events will be raised to ecore_evas_wl and the handlers there
do not pass along the Ecore_Evas as 'data', we need to change the type
of variable passed along in the event struture so that
ecore_event_window_match can be called to find the Ecore_Evas.
This patch also fixes some typos discovered during compile
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index c8967d1f47..d206618d37 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -41,10 +41,10 @@ EAPI int ECORE_WL2_EVENT_SEAT_KEYBOARD_REPEAT_CHANGED = 0; | |||
41 | EAPI int ECORE_WL2_EVENT_SEAT_SELECTION = 0; | 41 | EAPI int ECORE_WL2_EVENT_SEAT_SELECTION = 0; |
42 | EAPI int ECORE_WL2_EVENT_OUTPUT_TRANSFORM = 0; | 42 | EAPI int ECORE_WL2_EVENT_OUTPUT_TRANSFORM = 0; |
43 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATE = 0; | 43 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATE = 0; |
44 | EAPI int ECORE_Wl2_EVENT_WINDOW_ROTATION_CHANGE_PREPARE = 0; | 44 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATION_CHANGE_PREPARE = 0; |
45 | EAPI int ECORE_Wl2_EVENT_WINDOW_ROTATION_CHANGE_PREPARE_DONE = 0; | 45 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATION_CHANGE_PREPARE_DONE = 0; |
46 | EAPI int ECORE_Wl2_EVENT_WINDOW_ROTATION_CHANGE_REQUEST = 0; | 46 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATION_CHANGE_REQUEST = 0; |
47 | EAPI int ECORE_Wl2_EVENT_WINDOW_ROTATION_CHANGE_DONE = 0; | 47 | EAPI int ECORE_WL2_EVENT_WINDOW_ROTATION_CHANGE_DONE = 0; |
48 | 48 | ||
49 | EAPI int _ecore_wl2_event_window_www = -1; | 49 | EAPI int _ecore_wl2_event_window_www = -1; |
50 | EAPI int _ecore_wl2_event_window_www_drag = -1; | 50 | EAPI int _ecore_wl2_event_window_www_drag = -1; |