diff options
author | Chris Michael <cp.michael@samsung.com> | 2018-07-17 22:22:26 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2018-07-17 22:39:50 -0400 |
commit | df13fb4a7004a61a989f258b322bdeac22a4afae (patch) | |
tree | 9c4026454d89d43a8437b572c83ec16101bd62b2 /src/lib/elput/elput.c | |
parent | cafe84a2c2eeffe8c252d8988c7b6e5fcfe9f2c5 (diff) |
elput: Remove unused and useless event type
f220f08 introduced this event, however this event never gets raised or
used. I believe this was an accidental inclusion.
'#betabreak'
Reviewed-By: Derek Foreman <derek.foreman.samsung@gmail.com>
Diffstat (limited to 'src/lib/elput/elput.c')
-rw-r--r-- | src/lib/elput/elput.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/elput/elput.c b/src/lib/elput/elput.c index 503e5b57f0..3c51bca1ff 100644 --- a/src/lib/elput/elput.c +++ b/src/lib/elput/elput.c | |||
@@ -14,7 +14,6 @@ EAPI int ELPUT_EVENT_DEVICE_CHANGE = 0; | |||
14 | EAPI int ELPUT_EVENT_SESSION_ACTIVE = 0; | 14 | EAPI int ELPUT_EVENT_SESSION_ACTIVE = 0; |
15 | EAPI int ELPUT_EVENT_POINTER_MOTION = 0; | 15 | EAPI int ELPUT_EVENT_POINTER_MOTION = 0; |
16 | EAPI int ELPUT_EVENT_SWITCH = 0; | 16 | EAPI int ELPUT_EVENT_SWITCH = 0; |
17 | EAPI int elput_event_session_ready = 0; | ||
18 | 17 | ||
19 | EAPI int | 18 | EAPI int |
20 | elput_init(void) | 19 | elput_init(void) |
@@ -41,7 +40,6 @@ elput_init(void) | |||
41 | ELPUT_EVENT_SESSION_ACTIVE = ecore_event_type_new(); | 40 | ELPUT_EVENT_SESSION_ACTIVE = ecore_event_type_new(); |
42 | ELPUT_EVENT_POINTER_MOTION = ecore_event_type_new(); | 41 | ELPUT_EVENT_POINTER_MOTION = ecore_event_type_new(); |
43 | ELPUT_EVENT_SWITCH = ecore_event_type_new(); | 42 | ELPUT_EVENT_SWITCH = ecore_event_type_new(); |
44 | elput_event_session_ready = ecore_event_type_new(); | ||
45 | 43 | ||
46 | return _elput_init_count; | 44 | return _elput_init_count; |
47 | 45 | ||
@@ -70,8 +68,7 @@ elput_shutdown(void) | |||
70 | ELPUT_EVENT_DEVICE_CHANGE, | 68 | ELPUT_EVENT_DEVICE_CHANGE, |
71 | ELPUT_EVENT_SESSION_ACTIVE, | 69 | ELPUT_EVENT_SESSION_ACTIVE, |
72 | ELPUT_EVENT_POINTER_MOTION, | 70 | ELPUT_EVENT_POINTER_MOTION, |
73 | ELPUT_EVENT_SWITCH, | 71 | ELPUT_EVENT_SWITCH); |
74 | elput_event_session_ready); | ||
75 | 72 | ||
76 | eina_log_domain_unregister(_elput_log_dom); | 73 | eina_log_domain_unregister(_elput_log_dom); |
77 | _elput_log_dom = -1; | 74 | _elput_log_dom = -1; |