]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/decorations.c
Merge branch 'master' into chaz
[chaz/openbox] / openbox / actions / decorations.c
index bee25f3e25ce0da34a01b530c12c74dcf53ecaeb..f6fd2cbeb7762df6a5567a9459d959beefdc14fc 100644 (file)
@@ -5,12 +5,11 @@ static gboolean run_func_on(ObActionsData *data, gpointer options);
 static gboolean run_func_off(ObActionsData *data, gpointer options);
 static gboolean run_func_toggle(ObActionsData *data, gpointer options);
 
-void action_decorations_startup()
+void action_decorations_startup(void)
 {
-    actions_register("Decorate", NULL, NULL, run_func_on, NULL, NULL);
-    actions_register("Undecorate", NULL, NULL, run_func_off, NULL, NULL);
-    actions_register("ToggleDecorations", NULL, NULL, run_func_toggle,
-                     NULL, NULL);
+    actions_register("Decorate", NULL, NULL, run_func_on);
+    actions_register("Undecorate", NULL, NULL, run_func_off);
+    actions_register("ToggleDecorations", NULL, NULL, run_func_toggle);
 }
 
 /* Always return FALSE because its not interactive */
This page took 0.024825 seconds and 4 git commands to generate.