diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-11 16:28:55 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-11 16:29:04 +0000 |
| commit | 157ea34ce87b49756f0fe2f6ba81c5a09c42c0f9 (patch) | |
| tree | 89672d1bbe3726382cce72692c7ca32e679cd6b6 /src/ui/widget/combo-tool-item.cpp | |
| parent | Fix slowdown from switching Text tool a lot (diff) | |
| download | inkscape-157ea34ce87b49756f0fe2f6ba81c5a09c42c0f9.tar.gz inkscape-157ea34ce87b49756f0fe2f6ba81c5a09c42c0f9.zip | |
Initialize some uninitialized variables
Diffstat (limited to 'src/ui/widget/combo-tool-item.cpp')
| -rw-r--r-- | src/ui/widget/combo-tool-item.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/widget/combo-tool-item.cpp b/src/ui/widget/combo-tool-item.cpp index e9eee059d..205c17cdd 100644 --- a/src/ui/widget/combo-tool-item.cpp +++ b/src/ui/widget/combo-tool-item.cpp @@ -55,7 +55,8 @@ ComboToolItem::ComboToolItem(Glib::ustring group_label, _use_pixbuf (true), _icon_size ( Gtk::ICON_SIZE_LARGE_TOOLBAR ), _combobox (nullptr), - _menuitem (nullptr) + _menuitem (nullptr), + _use_group_label(false) { Gtk::Box* box = Gtk::manage(new Gtk::Box()); add(*box); |
