]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/cyclewindows.c
Make the relative desktop switching actions interactive
[chaz/openbox] / openbox / actions / cyclewindows.c
index 3d021bda734bf61da7d7b7644e5398da87664e6c..28618ef32c8ecd6438d5bba6241d2ea911cf099e 100644 (file)
@@ -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;
This page took 0.021319 seconds and 4 git commands to generate.