]> Dogcows Code - chaz/openbox/commitdiff
Fix calling functions with wrong number of arguments
authorMikael Magnusson <mikachu@comhem.se>
Tue, 4 Sep 2007 04:22:51 +0000 (06:22 +0200)
committerMikael Magnusson <mikachu@comhem.se>
Tue, 4 Sep 2007 04:23:54 +0000 (06:23 +0200)
openbox/focus_cycle_indicator.h
openbox/focus_cycle_popup.c
openbox/keyboard.c
openbox/moveresize.c
openbox/popup.c
openbox/screen.c

index 8c84f71a54dbd50cb265f6c2f333a012f6f6699b..28175c7521a06a2f2ab768b5d0130d7e78f3ed24 100644 (file)
@@ -27,6 +27,4 @@ void focus_cycle_indicator_shutdown(gboolean reconfig);
 
 void focus_cycle_draw_indicator(struct _ObClient *c);
 
-void focus_cycle_stop();
-
 #endif
index dbc6504227019fbaf39f80b28d1145e2da75f3c7..8ce2c161058afe8890987af5af001c04d4450df0 100644 (file)
@@ -96,7 +96,7 @@ void focus_cycle_popup_startup(gboolean reconfig)
 {
     XSetWindowAttributes attrib;
 
-    single_popup = icon_popup_new(TRUE);
+    single_popup = icon_popup_new();
 
     popup.obwin.type = Window_Internal;
     popup.a_bg = RrAppearanceCopy(ob_rr_theme->osd_hilite_bg);
index 6e45e5c49b6ddd624f4b46462bc1fc948729f310..d80537a61c8453b0b712522ada066f1762622d2b 100644 (file)
@@ -267,7 +267,7 @@ void keyboard_event(ObClient *client, const XEvent *e)
 void keyboard_startup(gboolean reconfig)
 {
     grab_keys(TRUE);
-    popup = popup_new(FALSE);
+    popup = popup_new();
     popup_set_text_align(popup, RR_JUSTIFY_CENTER);
 }
 
index 1a8550a9784d496d29fb36227114a022f1698675..b5a318938e3b8c2cd4b148b2d94b200f3bc375eb 100644 (file)
@@ -77,7 +77,7 @@ static void client_dest(ObClient *client, gpointer data)
 
 void moveresize_startup(gboolean reconfig)
 {
-    popup = popup_new(FALSE);
+    popup = popup_new();
     popup_set_text_align(popup, RR_JUSTIFY_CENTER);
 
     if (!reconfig)
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);
index 7516cfd9d0b34b246f7128390d25753bc033d5d5..04a3b452be033989b99c5e8c614a965d7381e592 100644 (file)
@@ -344,7 +344,7 @@ void screen_startup(gboolean reconfig)
     guint32 d;
     gboolean namesexist = FALSE;
 
-    desktop_popup = pager_popup_new(FALSE);
+    desktop_popup = pager_popup_new();
     pager_popup_height(desktop_popup, POPUP_HEIGHT);
 
     if (reconfig) {
This page took 0.037771 seconds and 4 git commands to generate.