Fix uninitialized variable
authorRobin Gareus <robin@gareus.org>
Thu, 29 Nov 2018 01:10:08 +0000 (02:10 +0100)
committerRobin Gareus <robin@gareus.org>
Thu, 29 Nov 2018 01:10:08 +0000 (02:10 +0100)
libs/gtkmm2ext/window_proxy.cc

index 9dfe03f1a055092c6ed9100683a71cddf6fdea06..b804c9c5b72e0416d10fc235d10a045571fff4db 100644 (file)
@@ -68,6 +68,7 @@ WindowProxy::WindowProxy (const std::string& name, const std::string& menu_name,
        , _width (-1)
        , _height (-1)
        , vistracker (0)
+       , _state_mask (StateMask (Position|Size))
 {
        set_state (node, 0);
 }