diff options
author | mathias <mathias> | 2005-01-11 12:05:10 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-01-11 12:05:10 (GMT) |
commit | 5bbab52d6dee30554159f5b40b2715ff35d50609 (patch) | |
tree | 5f1bb949f8c2d5411be84f767847fc510f8567cc /src | |
parent | 129f0eeaac7190710e33cad21ea0658d64c56ce1 (diff) | |
download | fluxbox_lack-5bbab52d6dee30554159f5b40b2715ff35d50609.zip fluxbox_lack-5bbab52d6dee30554159f5b40b2715ff35d50609.tar.bz2 |
fix for #1099950, Missing initialization in FbTk/FbWindow.cc
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/FbWindow.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/FbWindow.cc b/src/FbTk/FbWindow.cc index 6f07b45..6e0949a 100644 --- a/src/FbTk/FbWindow.cc +++ b/src/FbTk/FbWindow.cc | |||
@@ -50,7 +50,8 @@ FbWindow::FbWindow():FbDrawable(), m_parent(0), m_screen_num(0), m_window(0), m_ | |||
50 | 50 | ||
51 | } | 51 | } |
52 | 52 | ||
53 | FbWindow::FbWindow(const FbWindow& the_copy):m_parent(the_copy.parent()), | 53 | FbWindow::FbWindow(const FbWindow& the_copy):FbDrawable(), |
54 | m_parent(the_copy.parent()), | ||
54 | m_screen_num(the_copy.screenNumber()), m_window(the_copy.window()), | 55 | m_screen_num(the_copy.screenNumber()), m_window(the_copy.window()), |
55 | m_x(the_copy.x()), m_y(the_copy.y()), | 56 | m_x(the_copy.x()), m_y(the_copy.y()), |
56 | m_width(the_copy.width()), m_height(the_copy.height()), | 57 | m_width(the_copy.width()), m_height(the_copy.height()), |