]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.c
kill the const, use g_new instead of malloc, g_free the font in font_close()
[chaz/openbox] / openbox / action.c
index b976a84d09da68e2ee50230b585049e388d759b1..dfcd8d7e0634edf8ddb500fee7d4934eece1fe3b 100644 (file)
@@ -36,6 +36,16 @@ void action_execute(union ActionData *data)
     }
 }
 
+void action_focus(union ActionData *data)
+{
+    client_focus(data->client.c);
+}
+
+void action_unfocus (union ActionData *data)
+{
+    client_unfocus(data->client.c);
+}
+
 void action_iconify(union ActionData *data)
 {
     client_iconify(data->client.c, TRUE, TRUE);
This page took 0.023922 seconds and 4 git commands to generate.