diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-27 15:37:38 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-27 15:37:38 +0100 |
commit | 120f390c7c732c9867efcaf352c29a9d2ddcf0ca (patch) | |
tree | 77cd9e37754d4e4166f462f35b5400c47261d2b5 /qtmips_gui/statictable.cpp | |
parent | b7f2cec55f9a90032fc225fed0c1427faeadc879 (diff) | |
download | qtmips-120f390c7c732c9867efcaf352c29a9d2ddcf0ca.tar.gz qtmips-120f390c7c732c9867efcaf352c29a9d2ddcf0ca.tar.bz2 qtmips-120f390c7c732c9867efcaf352c29a9d2ddcf0ca.zip |
Fix some uninitialized jumps
Diffstat (limited to 'qtmips_gui/statictable.cpp')
-rw-r--r-- | qtmips_gui/statictable.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qtmips_gui/statictable.cpp b/qtmips_gui/statictable.cpp index 829e71b..594476b 100644 --- a/qtmips_gui/statictable.cpp +++ b/qtmips_gui/statictable.cpp @@ -8,6 +8,14 @@ StaticTableLayout::StaticTableLayout(QWidget *parent, int margin, int horizontal shspace = horizontal_small_spacing; vspace = vertical_spacing; setSizeConstraint(QLayout::SetMinAndMaxSize); + + cch_do_layout.size = QSize(0, 0); + cch_do_layout.count = 0; + cch_heightForWidth.w = 0; + cch_heightForWidth.count = 0; + cch_heightForWidth.width = 0; + cch_minSize.count = 0; + cch_minSize.size = QSize(0, 0); } StaticTableLayout::~StaticTableLayout() { |