summaryrefslogtreecommitdiffstats
path: root/src/gui/URIEntry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/URIEntry.cpp')
-rw-r--r--src/gui/URIEntry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/URIEntry.cpp b/src/gui/URIEntry.cpp
index 466948e4..30e6edb2 100644
--- a/src/gui/URIEntry.cpp
+++ b/src/gui/URIEntry.cpp
@@ -23,12 +23,12 @@
namespace Ingen {
namespace GUI {
-URIEntry::URIEntry(App* app,
- const std::set<Raul::URI>& types,
- const std::string& value)
+URIEntry::URIEntry(App* app,
+ std::set<Raul::URI> types,
+ const std::string& value)
: Gtk::HBox(false, 4)
, _app(app)
- , _types(types)
+ , _types(std::move(types))
, _menu_button(Gtk::manage(new Gtk::Button("≡")))
, _entry(Gtk::manage(new Gtk::Entry()))
{