diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 19:27:12 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 19:27:12 +0000 |
| commit | a95dc346fe7951dd48e41a41fcaafb6d872b0337 (patch) | |
| tree | 099d79a095d6d7d8b5d2bd9a7f79350439a7266b /plugins/menu/timed_menu.c | |
| parent | 1ffc7fa9ec0ca76f8ffc23bba2c1f2d417732462 (diff) | |
prefix and capitalize ObMenu ObMenuEntry and ObMenuEntryRenderType
make the ObMenuEntryRenderType a standard enum instead bitflags
Diffstat (limited to 'plugins/menu/timed_menu.c')
| -rw-r--r-- | plugins/menu/timed_menu.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/menu/timed_menu.c b/plugins/menu/timed_menu.c index e7665b56..a6e2e8dd 100644 --- a/plugins/menu/timed_menu.c +++ b/plugins/menu/timed_menu.c @@ -15,8 +15,8 @@ #include "kernel/action.h" #include "kernel/event.h" -#define TIMED_MENU(m) ((Menu *)m) -#define TIMED_MENU_DATA(m) ((Timed_Menu_Data *)((Menu *)m)->plugin_data) +#define TIMED_MENU(m) ((ObMenu *)m) +#define TIMED_MENU_DATA(m) ((Timed_Menu_Data *)((ObMenu *)m)->plugin_data) static char *PLUGIN_NAME = "timed_menu"; typedef enum { @@ -41,7 +41,7 @@ void plugin_startup() { } void plugin_shutdown() { } -void timed_menu_clean_up(Menu *m) { +void timed_menu_clean_up(ObMenu *m) { if (TIMED_MENU_DATA(m)->buf != NULL) { fprintf(stderr, "%s", TIMED_MENU_DATA(m)->buf); g_free(TIMED_MENU_DATA(m)->buf); @@ -66,7 +66,7 @@ void timed_menu_clean_up(Menu *m) { void timed_menu_read_pipe(int fd, void *d) { - Menu *menu = d; + ObMenu *menu = d; char *tmpbuf = NULL; unsigned long num_read; #ifdef DEBUG @@ -125,7 +125,7 @@ void timed_menu_read_pipe(int fd, void *d) void timed_menu_timeout_handler(void *d) { - Menu *data = d; + ObMenu *data = d; if (!data->shown && TIMED_MENU_DATA(data)->fd == -1) { switch (TIMED_MENU_DATA(data)->type) { case (TIMED_MENU_PIPE): { @@ -187,7 +187,7 @@ void timed_menu_timeout_handler(void *d) void *plugin_create() { Timed_Menu_Data *d = g_new(Timed_Menu_Data, 1); - Menu *m = menu_new("", PLUGIN_NAME, NULL); + ObMenu *m = menu_new("", PLUGIN_NAME, NULL); m->plugin = PLUGIN_NAME; |
