Add a empty funciton: elm_win_profiles_set() tizen_elm_1.8 submit/efl/20131021.015827 submit/efl/20131022.060641
authorJosé Roberto de Souza <jose.souza@intel.com>
Fri, 9 Aug 2013 19:30:01 +0000 (16:30 -0300)
committerJosé Roberto de Souza <jose.souza@intel.com>
Wed, 28 Aug 2013 20:16:16 +0000 (17:16 -0300)
This function is used in Camera application and in isf.

I think we will not need this function, if we are testing in
desktop we should set out envirement to mobile to have
the same result as in device.

So when possible we should remove all calls of this function.

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

index 79f54a7..0540333 100644 (file)
@@ -5567,6 +5567,14 @@ elm_win_floating_mode_get(const Evas_Object *obj)
    return sd->floating;
 }
 
+EAPI void
+elm_win_profiles_set(Evas_Object  *obj EINA_UNUSED,
+                     const char  **profiles EINA_UNUSED,
+                     unsigned int  num_profiles EINA_UNUSED)
+{
+
+}
+
 static void
 _class_constructor(Eo_Class *klass)
 {
index 718f873..f3297bb 100644 (file)
@@ -1302,3 +1302,5 @@ EAPI void                  elm_win_floating_mode_set(Evas_Object *obj, Eina_Bool
  */
 EAPI Eina_Bool             elm_win_floating_mode_get(const Evas_Object *obj);
 
+EAPI void elm_win_profiles_set(Evas_Object  *obj, const char  **profiles, unsigned int  num_profiles);
+