]> Dogcows Code - chaz/openbox/commitdiff
rm the 'focusraise' action, it is redundant.
authorDana Jansens <danakj@orodu.net>
Wed, 28 May 2003 23:50:43 +0000 (23:50 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 28 May 2003 23:50:43 +0000 (23:50 +0000)
openbox/action.c
openbox/action.h

index 2dde0f0bdc997770d28276030065a1ec5972e3a4..d341c9c389e2090f17d13f30869a27ba0f6e0881 100644 (file)
@@ -246,11 +246,6 @@ ActionString actionstrings[] =
         action_lower,
         NULL
     },
-    {
-        "focusraise",
-        action_focusraise,
-        NULL
-    },
     {
         "close",
         action_close,
@@ -633,14 +628,6 @@ void action_iconify(union ActionData *data)
         client_iconify(data->client.c, TRUE, TRUE);
 }
 
-void action_focusraise(union ActionData *data)
-{
-    if (data->client.c) {
-        client_focus(data->client.c);
-        stacking_raise(CLIENT_AS_WINDOW(data->client.c));
-    }
-}
-
 void action_raise(union ActionData *data)
 {
     if (data->client.c)
index 6c1c4d32fa1c76f726c24a7502ff9bbb72fb253d..f79bd56b4033b3ff6d42433ccc9af40e71cdb8f3 100644 (file)
@@ -137,8 +137,6 @@ void action_raise(union ActionData *data);
 /* ClientAction */
 void action_lower(union ActionData *data);
 /* ClientAction */
-void action_focusraise(union ActionData *data);
-/* ClientAction */
 void action_close(union ActionData *data);
 /* ClientAction */
 void action_kill(union ActionData *data);
This page took 0.025128 seconds and 4 git commands to generate.