]> Dogcows Code - chaz/openbox/blobdiff - openbox/popup.c
Fix calling functions with wrong number of arguments
[chaz/openbox] / openbox / popup.c
index d49148fffbc8727320aa7bca6da1429fbe1b5598..aaa7f6fdd1c8497bd0da1fa3b76b45443cdc584a 100644 (file)
@@ -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);
This page took 0.0206 seconds and 4 git commands to generate.