diff options
author | rathnor <rathnor> | 2003-10-02 16:14:41 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-10-02 16:14:41 (GMT) |
commit | 158b515e21f0f0154041cd5985ec38fe37c0e875 (patch) | |
tree | c1aebd425cef8610820043ae1f380dd5fb1f02d1 /src/WinClient.cc | |
parent | bb1a7c92d8bb194e7e415f4348b7428f1b8ef436 (diff) | |
download | fluxbox_pavel-158b515e21f0f0154041cd5985ec38fe37c0e875.zip fluxbox_pavel-158b515e21f0f0154041cd5985ec38fe37c0e875.tar.bz2 |
address some memory issues shown up with valgrind
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r-- | src/WinClient.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc index e032304..dadabe3 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.28 2003/09/29 14:58:15 rathnor Exp $ | 22 | // $Id: WinClient.cc,v 1.29 2003/10/02 16:14:41 rathnor Exp $ |
23 | 23 | ||
24 | #include "WinClient.hh" | 24 | #include "WinClient.hh" |
25 | 25 | ||
@@ -61,7 +61,8 @@ WinClient::WinClient(Window win, BScreen &screen, FluxboxWindow *fbwin):FbTk::Fb | |||
61 | m_blackbox_hint(0), | 61 | m_blackbox_hint(0), |
62 | m_mwm_hint(0), | 62 | m_mwm_hint(0), |
63 | m_focus_mode(F_PASSIVE), | 63 | m_focus_mode(F_PASSIVE), |
64 | m_diesig(*this), m_screen(screen) { | 64 | m_diesig(*this), m_screen(screen), |
65 | m_strut(0) { | ||
65 | updateBlackboxHints(); | 66 | updateBlackboxHints(); |
66 | updateMWMHints(); | 67 | updateMWMHints(); |
67 | updateWMHints(); | 68 | updateWMHints(); |