all repos — openbox @ 0ffd1ccc4701a9814e6ee570461b1250dd16f1e3

openbox fork - make it a bit more like ryudo

() -> (void)
Mikael Magnusson mikachu@comhem.se
commit

0ffd1ccc4701a9814e6ee570461b1250dd16f1e3

parent

db49122dece88956856606fe4c17158859f81837

M obt/display.cobt/display.c

@@ -117,7 +117,7 @@

return obt_display != NULL; } -void obt_display_close() +void obt_display_close(void) { obt_keyboard_shutdown(); if (obt_display) XCloseDisplay(obt_display);
M obt/keyboard.cobt/keyboard.c

@@ -49,7 +49,7 @@ static gboolean hyper_l = FALSE;

static gboolean started = FALSE; -void obt_keyboard_reload() +void obt_keyboard_reload(void) { gint i, j, k;

@@ -97,7 +97,7 @@ modkeys_keys[OBT_KEYBOARD_MODKEY_SHIFT] = ShiftMask;

modkeys_keys[OBT_KEYBOARD_MODKEY_CONTROL] = ControlMask; } -void obt_keyboard_shutdown() +void obt_keyboard_shutdown(void) { XFreeModifiermap(modmap); modmap = NULL;
M obt/mainloop.cobt/mainloop.c

@@ -140,7 +140,7 @@ ObtMainLoopFdHandler func;

GDestroyNotify destroy; }; -ObtMainLoop *obt_main_loop_new() +ObtMainLoop *obt_main_loop_new(void) { ObtMainLoop *loop;
M obt/prop.cobt/prop.c

@@ -33,7 +33,7 @@ XInternAtom((obt_display), (name), FALSE))

#define CREATE(var) CREATE_NAME(var, #var) #define CREATE_(var) CREATE_NAME(var, "_" #var) -void obt_prop_startup() +void obt_prop_startup(void) { if (prop_started) return; prop_started = TRUE;
M obt/xevent.cobt/xevent.c

@@ -44,7 +44,7 @@ static void xevent_handler(const XEvent *e, gpointer data);

static guint window_hash(Window *w) { return *w; } static gboolean window_comp(Window *w1, Window *w2) { return *w1 == *w2; } -ObtXEventHandler* xevent_new() +ObtXEventHandler* xevent_new(void) { ObtXEventHandler *h;
M openbox/mouse.copenbox/mouse.c

@@ -202,7 +202,7 @@ state, x, y, button, context, c);

return TRUE; } -void mouse_replay_pointer() +void mouse_replay_pointer(void) { if (replay_pointer_needed) { /* replay the pointer event before any windows move */
M openbox/openbox.copenbox/openbox.c

@@ -467,7 +467,7 @@ ob_exit(!(signal == SIGTERM || signal == SIGINT));

} } -static void print_version() +static void print_version(void) { g_print("Openbox %s\n", PACKAGE_VERSION); g_print(_("Copyright (c)"));

@@ -479,7 +479,7 @@ g_print("This is free software, and you are welcome to redistribute it\n");

g_print("under certain conditions. See the file COPYING for details.\n\n"); } -static void print_help() +static void print_help(void) { g_print(_("Syntax: openbox [options]\n")); g_print(_("\nOptions:\n"));

@@ -512,7 +512,7 @@ argv[i] = NULL;

*argc -= num; } -static void parse_env() +static void parse_env(void) { /* unset this so we don't pass it on unknowingly */ unsetenv("DESKTOP_STARTUP_ID");

@@ -644,13 +644,13 @@ restart_path = g_strdup(path);

ob_restart(); } -void ob_restart() +void ob_restart(void) { restart = TRUE; ob_exit(0); } -void ob_reconfigure() +void ob_reconfigure(void) { reconfigure = TRUE; ob_exit(0);

@@ -662,7 +662,7 @@ exitcode = code;

obt_main_loop_exit(ob_main_loop); } -void ob_exit_replace() +void ob_exit_replace(void) { exitcode = 0; being_replaced = TRUE;

@@ -681,7 +681,7 @@ g_assert(key < OB_NUM_KEYS);

return keys[key]; } -ObState ob_state() +ObState ob_state(void) { return state; }
M openbox/session.copenbox/session.c

@@ -159,7 +159,7 @@ }

} /*! Connect to the session manager and set up our callback functions */ -static gboolean session_connect() +static gboolean session_connect(void) { SmcCallbacks cb; gchar *oldid;

@@ -193,7 +193,7 @@ ob_debug("Failed to connect to session manager: %s", sm_err);

return sm_conn != NULL; } -static void session_setup_program() +static void session_setup_program(void) { SmPropValue vals = { .value = sm_argv[0],

@@ -212,7 +212,7 @@ g_free(prop.name);

g_free(prop.type); } -static void session_setup_user() +static void session_setup_user(void) { char *user = g_strdup(g_get_user_name());

@@ -255,7 +255,7 @@ g_free(prop.name);

g_free(prop.type); } -static void session_setup_pid() +static void session_setup_pid(void) { gchar *pid = g_strdup_printf("%ld", (glong) getpid());

@@ -278,7 +278,7 @@ g_free(pid);

} /*! This is a gnome-session-manager extension */ -static void session_setup_priority() +static void session_setup_priority(void) { gchar priority = 20; /* 20 is a lower prioity to run before other apps */

@@ -299,7 +299,7 @@ g_free(prop.name);

g_free(prop.type); } -static void session_setup_clone_command() +static void session_setup_clone_command(void) { gint i;

@@ -325,7 +325,7 @@ g_free(prop.type);

g_free(vals); } -static void session_setup_restart_command() +static void session_setup_restart_command(void) { gint i;

@@ -367,7 +367,7 @@ g_free(vals[i+2].value);

g_free(vals); } -static ObSMSaveData *sm_save_get_data() +static ObSMSaveData *sm_save_get_data(void) { ObSMSaveData *savedata = g_new0(ObSMSaveData, 1); /* save the active desktop and client.