diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
| commit | db053372c3b10afd89e780ab08a63493ccc3d1a7 (patch) | |
| tree | 97d7ad322270c4167de38b7194021d45405fa8d5 /src/ui/widget/combo-tool-item.cpp | |
| parent | ComboToolItem: Temporary workaround to display pixbuf by default (diff) | |
| download | inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.tar.gz inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.zip | |
clang-tidy recent changes
Diffstat (limited to 'src/ui/widget/combo-tool-item.cpp')
| -rw-r--r-- | src/ui/widget/combo-tool-item.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/widget/combo-tool-item.cpp b/src/ui/widget/combo-tool-item.cpp index ee9202b6f..eb26e5c6e 100644 --- a/src/ui/widget/combo-tool-item.cpp +++ b/src/ui/widget/combo-tool-item.cpp @@ -39,13 +39,13 @@ ComboToolItem::create(const Glib::ustring &group_label, return new ComboToolItem(group_label, tooltip, stock_id, store); } -ComboToolItem::ComboToolItem(const Glib::ustring &group_label, - const Glib::ustring &tooltip, - const Glib::ustring &stock_id, +ComboToolItem::ComboToolItem(Glib::ustring group_label, + Glib::ustring tooltip, + Glib::ustring stock_id, Glib::RefPtr<Gtk::ListStore> store ) : - _group_label( group_label ), - _tooltip( tooltip ), - _stock_id( stock_id ), + _group_label(std::move( group_label )), + _tooltip(std::move( tooltip )), + _stock_id(std::move( stock_id )), _store (std::move(store)), _use_label (true), _use_icon (false), |
