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/PropertiesWindow.hpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/gui/PropertiesWindow.hpp') diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp index c9a2c9f4..f4a8dd0d 100644 --- a/src/gui/PropertiesWindow.hpp +++ b/src/gui/PropertiesWindow.hpp @@ -76,19 +76,19 @@ private: Gtk::TreeModelColumn uri_col; }; - void add_property(const Raul::URI& key, const Atom& value); - void change_property(const Raul::URI& key, const Atom& value); - void remove_property(const Raul::URI& key, const Atom& value); - void on_change(const Raul::URI& key); + void add_property(const URI& key, const Atom& value); + void change_property(const URI& key, const Atom& value); + void remove_property(const URI& key, const Atom& value); + void on_change(const URI& key); - bool datatype_supported(const std::set& types, - Raul::URI* widget_type); + bool datatype_supported(const std::set& types, + URI* widget_type); - bool class_supported(const std::set& types); + bool class_supported(const std::set& types); - Gtk::Widget* create_value_widget(const Raul::URI& key, - const char* type_uri, - const Atom& value = Atom()); + Gtk::Widget* create_value_widget(const URI& key, + const char* type_uri, + const Atom& value = Atom()); Atom get_value(LV2_URID type, Gtk::Widget* value_widget); @@ -103,7 +103,7 @@ private: void apply_clicked(); void ok_clicked(); - typedef std::map Records; + typedef std::map Records; Records _records; SPtr _model; -- cgit v1.2.1