all repos — openbox @ c12d09bde85e40fdfbb36225a1b596b5f27c2335

openbox fork - make it a bit more like ryudo

Fix calling functions with wrong number of arguments
Mikael Magnusson mikachu@comhem.se
commit

c12d09bde85e40fdfbb36225a1b596b5f27c2335

parent

93c43114ca824f8f387bf7c4b34442a8cdaed3ab

M openbox/focus_cycle_indicator.hopenbox/focus_cycle_indicator.h

@@ -27,6 +27,4 @@ void focus_cycle_indicator_shutdown(gboolean reconfig);

void focus_cycle_draw_indicator(struct _ObClient *c); -void focus_cycle_stop(); - #endif
M openbox/focus_cycle_popup.copenbox/focus_cycle_popup.c

@@ -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);
M openbox/keyboard.copenbox/keyboard.c

@@ -267,7 +267,7 @@

void keyboard_startup(gboolean reconfig) { grab_keys(TRUE); - popup = popup_new(FALSE); + popup = popup_new(); popup_set_text_align(popup, RR_JUSTIFY_CENTER); }
M openbox/moveresize.copenbox/moveresize.c

@@ -77,7 +77,7 @@ }

void moveresize_startup(gboolean reconfig) { - popup = popup_new(FALSE); + popup = popup_new(); popup_set_text_align(popup, RR_JUSTIFY_CENTER); if (!reconfig)
M openbox/popup.copenbox/popup.c

@@ -320,7 +320,7 @@ {

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 *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);
M openbox/screen.copenbox/screen.c

@@ -344,7 +344,7 @@ gchar **names = NULL;

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) {