tasn pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=ddb9e9f7aab0ab74e1fe5d1701ffc1d08c3a47ea
commit ddb9e9f7aab0ab74e1fe5d1701ffc1d08c3a47ea Author: Tom Hacohen <[email protected]> Date: Mon Jan 12 10:13:00 2015 +0000 Elm win: Fix elm_win_fake()'s name to follow conventions. --- src/lib/elm_win.c | 2 +- src/lib/elm_win_legacy.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 43dfeba..c2d13c1 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -2918,7 +2918,7 @@ elm_win_add(Evas_Object *parent, } EAPI Evas_Object * -elm_win_fake(Ecore_Evas *ee) +elm_win_fake_add(Ecore_Evas *ee) { return eo_add(MY_CLASS, NULL, elm_obj_win_constructor(NULL, ELM_WIN_FAKE, ee)); } diff --git a/src/lib/elm_win_legacy.h b/src/lib/elm_win_legacy.h index e32f274..9729d8b 100644 --- a/src/lib/elm_win_legacy.h +++ b/src/lib/elm_win_legacy.h @@ -33,7 +33,7 @@ EAPI Evas_Object *elm_win_add(Evas_Object *parent, const char *name, El * * @since 1.13 */ -EAPI Evas_Object *elm_win_fake(Ecore_Evas *ee); +EAPI Evas_Object *elm_win_fake_add(Ecore_Evas *ee); /** * Adds a window object with standard setup --
