all repos — fluxbox @ 5bbab52d6dee30554159f5b40b2715ff35d50609

custom fork of the fluxbox windowmanager

fix for #1099950, Missing initialization in FbTk/FbWindow.cc
mathias mathias
commit

5bbab52d6dee30554159f5b40b2715ff35d50609

parent

129f0eeaac7190710e33cad21ea0658d64c56ce1

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M src/FbTk/FbWindow.ccsrc/FbTk/FbWindow.cc

@@ -50,7 +50,8 @@ m_buffer_pm(0){

} -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()),