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 80a30354ba78e7ac7f023fd2e6c7711c7e6c481b..5dfa5cdf0872bc0312a127ce0489b6258857d4d1 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 66566e52bcdb924fd06f54cb3ee102f816488f88..5e88009ff81b4fe7053c7bf80b368e237441f645 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);
+
 /**
  * @}
  */