Add elm_win_indicator_state_set
authorRusty Lynch <rusty.lynch@intel.com>
Wed, 19 Dec 2012 23:16:11 +0000 (15:16 -0800)
committerEduardo Lima (Etrunko) <eduardo.lima@intel.com>
Tue, 13 Aug 2013 20:49:39 +0000 (17:49 -0300)
This function exist in the Tizen 2.0 elementary tree with a simple
comment that calls it a 'wrapper'.  The rpm-installer can not build
without this.

src/lib/elm_win.c
src/lib/elm_win.h

index 80a3035..5dfa5cd 100644 (file)
@@ -3603,6 +3603,13 @@ elm_win_indicator_mode_set(Evas_Object *obj,
 #endif
 }
 
+// Wrapper that only exist in the Tizen 2.0 Elementary tree
+EAPI void
+elm_win_indicator_state_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode)
+{
+   elm_win_indicator_mode_set(obj, mode);
+}
+
 EAPI Elm_Win_Indicator_Mode
 elm_win_indicator_mode_get(const Evas_Object *obj)
 {
index 66566e5..5e88009 100644 (file)
@@ -1480,6 +1480,9 @@ struct _Elm_Win_Trap
  */
 EAPI Eina_Bool elm_win_trap_set(const Elm_Win_Trap *trap);
 
+// Wrapper that only exist in the Tizen 2.0 elementary tree
+EAPI void elm_win_indicator_state_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode);
+
 /**
  * @}
  */