X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fif.c;h=a35c61fce70a96c4df8944c4294957ea4e986409;hb=74a746e55f8c7faea0d71e9744532bda462b23bd;hp=a5d5f0bbc8a147ab8499527212c1f256b7e460a6;hpb=e5aee030e5d6a0234820f849a4248ea797c2115f;p=chaz%2Fopenbox diff --git a/openbox/actions/if.c b/openbox/actions/if.c index a5d5f0bb..a35c61fc 100644 --- a/openbox/actions/if.c +++ b/openbox/actions/if.c @@ -27,7 +27,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node); static void free_func(gpointer options); static gboolean run_func(ObActionsData *data, gpointer options); -void action_if_startup() +void action_if_startup(void) { actions_register("If", setup_func, @@ -128,8 +128,8 @@ static gboolean run_func(ObActionsData *data, gpointer options) (!o->maxvert_off || (c && !c->max_vert)) && (!o->maxfull_on || (c && c->max_vert && c->max_horz)) && (!o->maxfull_off || (c && !(c->max_vert && c->max_horz))) && - (!o->focused || (c && !(c == focus_client))) && - (!o->unfocused || (c && !(c != focus_client)))) + (!o->focused || (c && (c == focus_client))) && + (!o->unfocused || (c && !(c == focus_client)))) { acts = o->thenacts; }