diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:21:22 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:27:10 +0200 |
| commit | 556eb7b7fb20b3b0db03b6d92259ad3bb16dccde (patch) | |
| tree | e1d67b73f558a23a925ef90abb7575013d5cd89e /openbox/popup.c | |
| parent | 9b803f4755b73d1e3d28943c4c141493ad36317c (diff) | |
ANSI function declarations, ie () -> (void)
Diffstat (limited to 'openbox/popup.c')
| -rw-r--r-- | openbox/popup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/popup.c b/openbox/popup.c index aaa7f6fd..acc72146 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -29,7 +29,7 @@ #include "render/render.h" #include "render/theme.h" -ObPopup *popup_new() +ObPopup *popup_new(void) { XSetWindowAttributes attrib; ObPopup *self = g_new0(ObPopup, 1); @@ -315,7 +315,7 @@ static void icon_popup_draw_icon(gint x, gint y, gint w, gint h, gpointer data) RrPaint(self->a_icon, self->icon, w, h); } -ObIconPopup *icon_popup_new() +ObIconPopup *icon_popup_new(void) { ObIconPopup *self; @@ -473,7 +473,7 @@ static void pager_popup_draw_icon(gint px, gint py, gint w, gint h, } } -ObPagerPopup *pager_popup_new() +ObPagerPopup *pager_popup_new(void) { ObPagerPopup *self; |
