summaryrefslogtreecommitdiff
path: root/openbox/actions/highlight.c
diff options
context:
space:
mode:
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;
-}