From c12d09bde85e40fdfbb36225a1b596b5f27c2335 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 4 Sep 2007 06:22:51 +0200 Subject: Fix calling functions with wrong number of arguments --- openbox/popup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbox/popup.c') 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); -- cgit v1.2.3