From 5bbab52d6dee30554159f5b40b2715ff35d50609 Mon Sep 17 00:00:00 2001 From: mathias Date: Tue, 11 Jan 2005 12:05:10 +0000 Subject: fix for #1099950, Missing initialization in FbTk/FbWindow.cc --- src/FbTk/FbWindow.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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_ } -FbWindow::FbWindow(const FbWindow& the_copy):m_parent(the_copy.parent()), +FbWindow::FbWindow(const FbWindow& the_copy):FbDrawable(), + m_parent(the_copy.parent()), m_screen_num(the_copy.screenNumber()), m_window(the_copy.window()), m_x(the_copy.x()), m_y(the_copy.y()), m_width(the_copy.width()), m_height(the_copy.height()), -- cgit v0.11.2