]> Dogcows Code - chaz/openbox/blobdiff - src/openbox.cc
fix compiling with the new strut (new namespace)
[chaz/openbox] / src / openbox.cc
index f10db5bc63e44478e7995ea96e7f15e918f541c9..c5a93eeb25003d278f6299958b15d9d597a297e6 100644 (file)
@@ -210,5 +210,22 @@ void Openbox::eventLoop()
 }
 
 
+void Openbox::addClient(Window window, OBClient *client)
+{
+  _clients[window] = client;
+}
+
+
+void Openbox::removeClient(Window window)
+{
+  _clients[window] = (OBClient *) 0;
+}
+
+
+OBClient *Openbox::findClient(Window window)
+{
+  return _clients[window];
+}
+
 }
 
This page took 0.020188 seconds and 4 git commands to generate.