Add a empty funciton: elm_win_profiles_set()
authorJosé Roberto de Souza <jose.souza@intel.com>
Fri, 9 Aug 2013 19:30:01 +0000 (16:30 -0300)
committerQuanxian Wang <quanxian.wang@intel.com>
Tue, 29 Oct 2013 10:09:46 +0000 (18:09 +0800)
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 0cb4489376e56f54d0a25c92222ec4e8d844c1b4..44af2bbac62892f52e54b85adbffef9b886cf273 100644 (file)
@@ -5604,6 +5604,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
 _window_id_get(Eo *obj EINA_UNUSED, void *_pd EINA_UNUSED, va_list *list)
 {
index a23bb8484bcc9fe38a1a0db0352662d0943be325..fe54a01c1957a84ede3780dbaf34c8dd9c1019b4 100644 (file)
@@ -1314,3 +1314,4 @@ EAPI Eina_Bool             elm_win_floating_mode_get(const Evas_Object *obj);
  * @since 1.8
  */
 EAPI Ecore_Window          elm_win_window_id_get(const Evas_Object *obj);
+EAPI void elm_win_profiles_set(Evas_Object  *obj, const char  **profiles, unsigned int  num_profiles);