fixup! Add support for focus UI in InputPicker
authorPiotr Tworek <p.tworek@samsung.com>
Mon, 9 Feb 2015 13:55:56 +0000 (14:55 +0100)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Don't use internal _Eo_Opaque type. When Evas.h is included Evas_Object
typedef should take care of that. Code using evas should use always use
Evas_Object directly.
Reviewed by: Kamil Klimek, Piotr Grad, SeungSeop Park

Change-Id: Iad2ed39f9280dc50719a15be298142bb990167f0
Signed-off-by: Piotr Tworek <p.tworek@samsung.com>
tizen_src/impl/browser/inputpicker/InputPicker.cc
tizen_src/impl/browser/inputpicker/InputPicker.h

index d1a2c0f142f30bbd9bc5b3d80fa94cb93da84e9c..4dcc7db5623b49e29c7bd3e13cd9837ddf48e034 100755 (executable)
@@ -374,11 +374,7 @@ void InputPicker::HideColorPicker() {
 }
 
 void InputPicker::SelectedColorCallback(
-#if defined(OS_TIZEN_TV)
     void* data, Evas_Object* obj, void* event_info) {
-#else
-    void* data, _Eo_Opaque* obj, void* event_info) {
-#endif
   int r = 0;
   int g = 0;
   int b = 0;
index f21899492b2ba388b1bb0011c0a1ed32853db8e9..125fe5e30ad8186a1b288ac61db1f1f4fa414de4 100755 (executable)
@@ -61,11 +61,7 @@ class InputPicker {
     static void ColorPickerCallback(
         void* data, Evas_Object* obj, void* event_info);
     static void SelectedColorCallback(
-#if defined(OS_TIZEN_TV)
         void* data, Evas_Object* obj, void* event_info);
-#else
-        void* data, _Eo_Opaque* obj, void* event_info);
-#endif
 #if defined(OS_TIZEN_MOBILE)
     static void HandleBackKeyColorPicker(
         void* data,  Evas_Object* obj, void* event_info);