diff options
author | Jongmin Lee <jm015.lee@samsung.com> | 2016-05-19 17:00:36 +0900 |
---|---|---|
committer | Jongmin Lee <jm015.lee@samsung.com> | 2016-05-19 17:00:36 +0900 |
commit | 914d817d338c5e2ce19f20bbaeed471b8a626f68 (patch) | |
tree | f70e7b3a594e0a614f3188734adabeb4804f6668 | |
parent | a88bc31689172ae3fc11d0e0724a05cbc39aa050 (diff) | |
download | efl-assist-accepted/tizen_common.tar.gz efl-assist-accepted/tizen_common.tar.bz2 efl-assist-accepted/tizen_common.zip |
remove unused variablessubmit/tizen_unified/20170308.100410submit/tizen_3.0_ivi/20161010.000001submit/tizen_3.0.m2/20170104.093751submit/tizen/20160728.041105accepted/tizen/wearable/20160803.025347accepted/tizen/unified/20170309.034228accepted/tizen/tv/20160803.025331accepted/tizen/mobile/20160803.025315accepted/tizen/ivi/20160803.025406accepted/tizen/common/20160728.100422accepted/tizen/3.0/ivi/20161011.043744tizen_3.0.m2tizen_3.0accepted/tizen_wearableaccepted/tizen_unifiedaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_iviaccepted/tizen_commonaccepted/tizen_3.0_ivi
Change-Id: Ief5995ddf339a4ee63d0a8af7d671a2dbb192815
-rw-r--r-- | src/lib/efl_assist_screen_reader.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/efl_assist_screen_reader.c b/src/lib/efl_assist_screen_reader.c index 50ed62d..383f4c0 100644 --- a/src/lib/efl_assist_screen_reader.c +++ b/src/lib/efl_assist_screen_reader.c @@ -141,11 +141,11 @@ static void _timeout_cb(void *data, Evas_Object *obj, void *event_info) { #ifdef HAVE_X11 Ecore_X_Window xwin=0; + unsigned int val; #endif #ifdef HAVE_WAYLAND Ecore_Wl_Window *wwin=0; #endif - unsigned int val; #ifdef HAVE_X11 xwin = elm_win_xwindow_get(data); @@ -175,13 +175,11 @@ ea_screen_reader_support_set(Evas_Object *win, Eina_Bool support) { #ifdef HAVE_X11 Ecore_X_Window w=0; + unsigned int val; #elif defined HAVE_WAYLAND Ecore_Wl_Window *w=0; #endif - unsigned int val; int tts_val; - Evas_Object *base; - Evas_Object *body; Evas_Object *popup; if (vconf_get_bool(VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, &tts_val) != 0) @@ -201,9 +199,9 @@ ea_screen_reader_support_set(Evas_Object *win, Eina_Bool support) if (support) { - val = 0; elm_config_access_set(EINA_TRUE); #ifdef HAVE_X11 + val = 0; ecore_x_window_prop_card32_set (w, ECORE_X_ATOM_E_ILLUME_ACCESS_CONTROL, &val, 1); #else |