seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=2d77ef096f890337ccf60f19f188cdc2960232d6
commit 2d77ef096f890337ccf60f19f188cdc2960232d6 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Sat Oct 19 02:20:34 2013 +0900 elm: Added missing undefs. --- src/lib/elc_ctxpopup.c | 1 + src/lib/elc_fileselector.c | 1 + src/lib/elc_fileselector_button.c | 1 + src/lib/elc_fileselector_entry.c | 1 + src/lib/elm_actionslider.c | 1 + src/lib/elm_entry.c | 1 + src/lib/elm_hover.c | 1 + src/lib/elm_menu.c | 1 + 8 files changed, 8 insertions(+) diff --git a/src/lib/elc_ctxpopup.c b/src/lib/elc_ctxpopup.c index 5c3727b..e4d110c 100644 --- a/src/lib/elc_ctxpopup.c +++ b/src/lib/elc_ctxpopup.c @@ -27,6 +27,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { {"unfocused", ""}, /**< handled by elm_widget */ {NULL, NULL} }; +#undef ELM_PRIV_CTXPOPUP_SIGNALS static void _elm_ctxpopup_smart_translate(Eo *obj, void *_pd, va_list *list) diff --git a/src/lib/elc_fileselector.c b/src/lib/elc_fileselector.c index 9b85b14..a490f66 100644 --- a/src/lib/elc_fileselector.c +++ b/src/lib/elc_fileselector.c @@ -40,6 +40,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { ELM_PRIV_FILESELECTOR_SIGNALS(ELM_PRIV_SMART_CALLBACKS_DESC) {NULL, NULL} }; +#undef ELM_PRIV_FILESELECTOR_SIGNALS /* final routine on deletion */ static void diff --git a/src/lib/elc_fileselector_button.c b/src/lib/elc_fileselector_button.c index df5b550..77bddec 100644 --- a/src/lib/elc_fileselector_button.c +++ b/src/lib/elc_fileselector_button.c @@ -26,6 +26,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { {"unfocused", ""}, /**< handled by elm_widget */ {NULL, NULL} }; +#undef ELM_PRIV_FILESELECTOR_BUTTON_SIGNALS static void _elm_fileselector_button_smart_translate(Eo *obj, void *_pd EINA_UNUSED, va_list *list) diff --git a/src/lib/elc_fileselector_entry.c b/src/lib/elc_fileselector_entry.c index 5762b90..14e0fb1 100644 --- a/src/lib/elc_fileselector_entry.c +++ b/src/lib/elc_fileselector_entry.c @@ -38,6 +38,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = ELM_PRIV_FILESELECTOR_ENTRY_SIGNALS(ELM_PRIV_SMART_CALLBACKS_DESC) {NULL, NULL} }; +#undef ELM_PRIV_FILESELECTOR_ENTRY_SIGNALS #define SIG_FWD(name) \ static void \ diff --git a/src/lib/elm_actionslider.c b/src/lib/elm_actionslider.c index 4459764..95eac1c 100644 --- a/src/lib/elm_actionslider.c +++ b/src/lib/elm_actionslider.c @@ -34,6 +34,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = ELM_PRIV_ACTIONSLIDER_SIGNALS(ELM_PRIV_SMART_CALLBACKS_DESC) {NULL, NULL} }; +#undef ELM_PRIV_ACTIONSLIDER_SIGNALS static Elm_Actionslider_Pos _get_pos_by_orientation(const Evas_Object *obj, diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 0b472cd..8460dd6 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -59,6 +59,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { ELM_PRIV_ENTRY_SIGNALS(ELM_PRIV_SMART_CALLBACKS_DESC) {NULL, NULL} }; +#undef ELM_PRIV_ENTRY_SIGNALS static const Elm_Layout_Part_Alias_Description _content_aliases[] = { diff --git a/src/lib/elm_hover.c b/src/lib/elm_hover.c index faf03c3..5c18188 100644 --- a/src/lib/elm_hover.c +++ b/src/lib/elm_hover.c @@ -57,6 +57,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { {"unfocused", ""}, /**< handled by elm_widget */ {NULL, NULL} }; +#undef ELM_PRIV_HOVER_SIGNALS static void _parent_move_cb(void *data, diff --git a/src/lib/elm_menu.c b/src/lib/elm_menu.c index 3a58a11..30ca2b3 100644 --- a/src/lib/elm_menu.c +++ b/src/lib/elm_menu.c @@ -23,6 +23,7 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { ELM_PRIV_MENU_SIGNALS(ELM_PRIV_SMART_CALLBACKS_DESC) {NULL, NULL} }; +#undef ELM_PRIV_MENU_SIGNALS static void _elm_menu_smart_translate(Eo *obj EINA_UNUSED, void *_pd, va_list *list) --