hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=efab2b76a17acf0d510824612d969890858bc664
commit efab2b76a17acf0d510824612d969890858bc664 Author: ChunEon Park <[email protected]> Date: Thu Jan 30 12:28:07 2014 +0900 menu, config - hide internal structure type since they are private. affected by these patchs 4fcf8eaef7f47ec56197b97dece6af353e481782 9af9369c79281dcfc2a15bc1577b9a45cae7ba5a --- src/bin/config_data.c | 2 ++ src/bin/menu.c | 2 ++ src/include/common.h | 2 -- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/config_data.c b/src/bin/config_data.c index dcda302..43a4e65 100644 --- a/src/bin/config_data.c +++ b/src/bin/config_data.c @@ -30,6 +30,8 @@ struct config_s Eina_Bool hotkeys : 1; }; +typedef struct config_s config_data; + static config_data *g_cd = NULL; static void diff --git a/src/bin/menu.c b/src/bin/menu.c index 2b314b8..47847dc 100644 --- a/src/bin/menu.c +++ b/src/bin/menu.c @@ -29,6 +29,8 @@ struct menu_s edit_data *ed; }; +typedef struct menu_s menu_data; + static menu_data *g_md = NULL; static void warning_no_btn_cb(void *data, Evas_Object *obj EINA_UNUSED, diff --git a/src/include/common.h b/src/include/common.h index 8e36c2e..72345a0 100644 --- a/src/include/common.h +++ b/src/include/common.h @@ -1,13 +1,11 @@ #ifndef __COMMON_H__ #define __COMMON_H__ -typedef struct menu_s menu_data; typedef struct viewer_s view_data; typedef struct app_s app_data; typedef struct statusbar_s stats_data; typedef struct editor_s edit_data; typedef struct syntax_color_s color_data; -typedef struct config_s config_data; typedef struct parser_s parser_data; typedef struct attr_value_s attr_value; typedef struct dummy_obj_s dummy_obj; --
