summaryrefslogtreecommitdiff
path: root/openbox/actions/cyclewindows.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-12-16 15:17:08 -0500
committerDana Jansens <danakj@orodu.net>2009-12-17 10:33:06 -0500
commit1a348576400b26dad3a58a81415c4c833fb4915c (patch)
tree39bbdd4efba2b2d7d9e270db837737ad9dab5db3 /openbox/actions/cyclewindows.c
parent1b392b5fbe85c55cda2b0fc9d1e10cbe56216185 (diff)
Make the relative desktop switching actions interactive
The desktop popup can now be shown "permanently" in which case it stays until you tell it to hide.
Diffstat (limited to 'openbox/actions/cyclewindows.c')
-rw-r--r--openbox/actions/cyclewindows.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbox/actions/cyclewindows.c b/openbox/actions/cyclewindows.c
index 3d021bda..28618ef3 100644
--- a/openbox/actions/cyclewindows.c
+++ b/openbox/actions/cyclewindows.c
@@ -27,17 +27,17 @@ static gpointer setup_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *in,
ObActionsICancelFunc *c,
- ObActionsIPreFunc *post);
+ ObActionsIPostFunc *post);
static gpointer setup_forward_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *in,
ObActionsICancelFunc *c,
- ObActionsIPreFunc *post);
+ ObActionsIPostFunc *post);
static gpointer setup_backward_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *in,
ObActionsICancelFunc *c,
- ObActionsIPreFunc *post);
+ ObActionsIPostFunc *post);
static void free_func(gpointer options);
static gboolean run_func(ObActionsData *data, gpointer options);
static gboolean i_input_func(guint initial_state,
@@ -58,7 +58,7 @@ static gpointer setup_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *input,
ObActionsICancelFunc *cancel,
- ObActionsIPreFunc *post)
+ ObActionsIPostFunc *post)
{
xmlNodePtr n;
Options *o;
@@ -115,7 +115,7 @@ static gpointer setup_forward_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *input,
ObActionsICancelFunc *cancel,
- ObActionsIPreFunc *post)
+ ObActionsIPostFunc *post)
{
Options *o = setup_func(node, pre, input, cancel, post);
o->forward = TRUE;
@@ -126,7 +126,7 @@ static gpointer setup_backward_func(xmlNodePtr node,
ObActionsIPreFunc *pre,
ObActionsIInputFunc *input,
ObActionsICancelFunc *cancel,
- ObActionsIPreFunc *post)
+ ObActionsIPostFunc *post)
{
Options *o = setup_func(node, pre, input, cancel, post);
o->forward = FALSE;