summaryrefslogtreecommitdiff
path: root/openbox/popup.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-09-04 06:21:22 +0200
committerMikael Magnusson <mikachu@comhem.se>2007-09-04 06:27:10 +0200
commit556eb7b7fb20b3b0db03b6d92259ad3bb16dccde (patch)
treee1d67b73f558a23a925ef90abb7575013d5cd89e /openbox/popup.c
parent9b803f4755b73d1e3d28943c4c141493ad36317c (diff)
ANSI function declarations, ie () -> (void)
Diffstat (limited to 'openbox/popup.c')
-rw-r--r--openbox/popup.c6
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;