summaryrefslogtreecommitdiff
path: root/openbox/popup.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2007-09-04 06:22:51 +0200
committerMikael Magnusson <mikachu@comhem.se>2007-09-04 06:23:54 +0200
commitc12d09bde85e40fdfbb36225a1b596b5f27c2335 (patch)
tree0151ec2a063355c341610435542996b841dd9aad /openbox/popup.c
parent93c43114ca824f8f387bf7c4b34442a8cdaed3ab (diff)
Fix calling functions with wrong number of arguments
Diffstat (limited to 'openbox/popup.c')
-rw-r--r--openbox/popup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/popup.c b/openbox/popup.c
index d49148ff..aaa7f6fd 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -320,7 +320,7 @@ ObIconPopup *icon_popup_new()
ObIconPopup *self;
self = g_new0(ObIconPopup, 1);
- self->popup = popup_new(TRUE);
+ self->popup = popup_new();
self->a_icon = RrAppearanceCopy(ob_rr_theme->a_clear_tex);
self->icon = XCreateWindow(ob_display, self->popup->bg,
0, 0, 1, 1, 0,
@@ -478,7 +478,7 @@ ObPagerPopup *pager_popup_new()
ObPagerPopup *self;
self = g_new(ObPagerPopup, 1);
- self->popup = popup_new(TRUE);
+ self->popup = popup_new();
self->desks = 0;
self->wins = g_new(Window, self->desks);