summaryrefslogtreecommitdiff
path: root/openbox/actions/highlight.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-26 12:55:14 +0000
committerDana Jansens <danakj@orodu.net>2007-06-26 12:55:14 +0000
commit85c7635b9b163face21b460de7fd3877baea321b (patch)
tree15d5b6b639551186566648a88f1ca8edc0623bd2 /openbox/actions/highlight.c
parent41010812fa1e891e162c88a3c962522832517cc4 (diff)
remove the highlight action. its not useful without event bindings
Diffstat (limited to 'openbox/actions/highlight.c')
-rw-r--r--openbox/actions/highlight.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/openbox/actions/highlight.c b/openbox/actions/highlight.c
index 95ba7723..e69de29b 100644
--- a/openbox/actions/highlight.c
+++ b/openbox/actions/highlight.c
@@ -1,21 +0,0 @@
-#include "openbox/actions.h"
-#include "openbox/client.h"
-
-static gboolean run_func(ObActionsData *data, gpointer options);
-
-void action_highlight_startup()
-{
- actions_register("Highlight",
- NULL, NULL,
- run_func,
- NULL, NULL);
-}
-
-/* Always return FALSE because its not interactive */
-static gboolean run_func(ObActionsData *data, gpointer options)
-{
- if (data->client)
- client_hilite(data->client, TRUE);
-
- return FALSE;
-}