From 44f7ad5222d824d81dc743045d5887418847e74e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Jan 2018 00:41:34 +0100 Subject: Add URI class and remove use of Raul::URI --- src/gui/URIEntry.hpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/gui/URIEntry.hpp') diff --git a/src/gui/URIEntry.hpp b/src/gui/URIEntry.hpp index 90df2160..2f55a3d9 100644 --- a/src/gui/URIEntry.hpp +++ b/src/gui/URIEntry.hpp @@ -36,9 +36,7 @@ public: * If `types` is given, then a menu button will be shown which pops up a * enu for easily choosing known values with valid types. */ - URIEntry(App* app, - std::set types, - const std::string& value); + URIEntry(App* app, std::set types, const std::string& value); std::string get_text() { return _entry->get_text(); } Glib::SignalProxy0 signal_changed() { return _entry->signal_changed(); } @@ -58,10 +56,10 @@ private: void uri_chosen(const std::string& uri); bool menu_button_event(GdkEvent* ev); - App* _app; - const std::set _types; - Gtk::Button* _menu_button; - Gtk::Entry* _entry; + App* _app; + const std::set _types; + Gtk::Button* _menu_button; + Gtk::Entry* _entry; }; } // namespace GUI -- cgit v1.2.1