diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-10 15:40:24 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-10-10 15:40:24 +0000 |
| commit | 855e27bfc64d77eb390e56f34a56d5af352d65af (patch) | |
| tree | 95c41acb081a5015859cb3efeddad105c9b9f537 /src/ui | |
| parent | Fix GC warnings (diff) | |
| download | inkscape-855e27bfc64d77eb390e56f34a56d5af352d65af.tar.gz inkscape-855e27bfc64d77eb390e56f34a56d5af352d65af.zip | |
Fix uninitialized value
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/widget/combo-tool-item.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/widget/combo-tool-item.cpp b/src/ui/widget/combo-tool-item.cpp index ce366d0fc..5e07efdf1 100644 --- a/src/ui/widget/combo-tool-item.cpp +++ b/src/ui/widget/combo-tool-item.cpp @@ -45,6 +45,7 @@ ComboToolItem::ComboToolItem(Glib::ustring group_label, Glib::ustring stock_id, Glib::RefPtr<Gtk::ListStore> store, bool has_entry) : + _active(-1), _group_label(std::move( group_label )), _tooltip(std::move( tooltip )), _stock_id(std::move( stock_id )), |
