aboutsummaryrefslogtreecommitdiff
path: root/src/WinClient.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-30 20:56:41 (GMT)
committerfluxgen <fluxgen>2003-12-30 20:56:41 (GMT)
commit3490c73f570cb43fcdea5c2f8770a379d721a73d (patch)
treec90fdca53a52d99bd5ef5f02356ab13f33eea639 /src/WinClient.cc
parent4a8a7a32d4e3df3ffa7dc68482ff8f1053d257eb (diff)
downloadfluxbox-3490c73f570cb43fcdea5c2f8770a379d721a73d.zip
fluxbox-3490c73f570cb43fcdea5c2f8770a379d721a73d.tar.bz2
fixed focus issue
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r--src/WinClient.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc
index 111e51d..2524106 100644
--- a/src/WinClient.cc
+++ b/src/WinClient.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: WinClient.cc,v 1.36 2003/12/21 15:24:28 rathnor Exp $ 22// $Id: WinClient.cc,v 1.37 2003/12/30 20:56:41 fluxgen Exp $
23 23
24#include "WinClient.hh" 24#include "WinClient.hh"
25 25
@@ -118,10 +118,8 @@ WinClient::~WinClient() {
118 if (m_blackbox_hint != 0) 118 if (m_blackbox_hint != 0)
119 XFree(m_blackbox_hint); 119 XFree(m_blackbox_hint);
120 120
121 if (window()) { 121 if (window())
122 fluxbox->removeWindowSearch(window()); 122 fluxbox->removeWindowSearch(window());
123 fluxbox->removeRedirectEvent(None, window());
124 }
125 123
126 m_win = 0; 124 m_win = 0;
127} 125}