summaryrefslogtreecommitdiff
path: root/openbox/actions/layer.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/actions/layer.c')
-rw-r--r--openbox/actions/layer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbox/actions/layer.c b/openbox/actions/layer.c
index 1d522bbc..1dc7c4cf 100644
--- a/openbox/actions/layer.c
+++ b/openbox/actions/layer.c
@@ -18,18 +18,18 @@ static gpointer setup_sendnormal_func(xmlNodePtr node);
void action_layer_startup(void)
{
actions_register("ToggleAlwaysOnTop", setup_func_top, g_free,
- run_func, NULL, NULL);
+ run_func);
actions_register("ToggleAlwaysOnBottom", setup_func_bottom, g_free,
- run_func, NULL, NULL);
+ run_func);
actions_register("SendToLayer", setup_func_send, g_free,
- run_func, NULL, NULL);
+ run_func);
/* 3.4-compatibility */
actions_register("SendToTopLayer", setup_sendtop_func, g_free,
- run_func, NULL, NULL);
+ run_func);
actions_register("SendToBottomLayer", setup_sendbottom_func, g_free,
- run_func, NULL, NULL);
+ run_func);
actions_register("SendToNormalLayer", setup_sendnormal_func, g_free,
- run_func, NULL, NULL);
+ run_func);
}
static gpointer setup_func_top(xmlNodePtr node)