]> Dogcows Code - chaz/openbox/blobdiff - openbox/focus.c
Revert all commits for the Hooks feature to move it to a topic branch.
[chaz/openbox] / openbox / focus.c
index baf88e8134bcc8227c8706cdbae849184781da7e..2af0da9c0f892cbcdc0c17dde674e293ab81b9ab 100644 (file)
@@ -27,7 +27,6 @@
 #include "focus_cycle.h"
 #include "screen.h"
 #include "keyboard.h"
-#include "hooks.h"
 #include "focus.h"
 #include "stacking.h"
 #include "obt/prop.h"
@@ -73,7 +72,6 @@ static void push_to_top(ObClient *client)
 void focus_set_client(ObClient *client)
 {
     Window active;
-    ObClient *old;
 
     ob_debug_type(OB_DEBUG_FOCUS,
                   "focus_set_client 0x%lx", client ? client->window : 0);
@@ -89,7 +87,6 @@ void focus_set_client(ObClient *client)
     focus_cycle_stop(focus_client);
     focus_cycle_stop(client);
 
-    old = focus_client;
     focus_client = client;
 
     if (client != NULL) {
@@ -104,9 +101,6 @@ void focus_set_client(ObClient *client)
         active = client ? client->window : None;
         OBT_PROP_SET32(obt_root(ob_screen), NET_ACTIVE_WINDOW, WINDOW, active);
     }
-
-    hooks_queue(OB_HOOK_WIN_UNFOCUS, old);
-    hooks_queue(OB_HOOK_WIN_FOCUS, client);
 }
 
 static ObClient* focus_fallback_target(gboolean allow_refocus,
This page took 0.021741 seconds and 4 git commands to generate.