diff options
author | Henrik Kinnunen <fluxgen@fluxbox.org> | 2010-03-26 16:28:18 (GMT) |
---|---|---|
committer | Henrik Kinnunen <fluxgen@fluxbox.org> | 2010-03-26 16:28:18 (GMT) |
commit | 5bc782561bd395ce636c83e007b37dd6c8393859 (patch) | |
tree | 3928bf114f2484cd6a7785bdcc63d1be0ae459e2 /src/FbTk/FbWindow.cc | |
parent | 43837f82e152ea03a0bcefb07b089b1b9d72dc03 (diff) | |
download | fluxbox-5bc782561bd395ce636c83e007b37dd6c8393859.zip fluxbox-5bc782561bd395ce636c83e007b37dd6c8393859.tar.bz2 |
Initialize all variables in FbWindow
Diffstat (limited to 'src/FbTk/FbWindow.cc')
-rw-r--r-- | src/FbTk/FbWindow.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/FbTk/FbWindow.cc b/src/FbTk/FbWindow.cc index fb0ad1d..956415d 100644 --- a/src/FbTk/FbWindow.cc +++ b/src/FbTk/FbWindow.cc | |||
@@ -79,6 +79,10 @@ FbWindow::FbWindow(int screen_num, | |||
79 | FbDrawable(), | 79 | FbDrawable(), |
80 | m_parent(0), | 80 | m_parent(0), |
81 | m_screen_num(screen_num), | 81 | m_screen_num(screen_num), |
82 | m_x(0), m_y(0), m_width(0), m_height(0), | ||
83 | m_border_width(0), | ||
84 | m_border_color(0), | ||
85 | m_depth(0), | ||
82 | m_destroy(true), | 86 | m_destroy(true), |
83 | m_lastbg_color_set(false), | 87 | m_lastbg_color_set(false), |
84 | m_lastbg_color(0), | 88 | m_lastbg_color(0), |