From 19928bb583e72802746b89e322f71ecc0fcb7427 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 13 May 2009 04:05:32 +0000 Subject: The great ID refactoring of 2009. Path is now actually URI (scheme path: for now). Therefore ingen nodes and such live in the same namespace as ... well, everything. Including plugins. Thar be profit, laddies. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1992 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/PortPropertiesWindow.hpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'src/gui/PortPropertiesWindow.hpp') diff --git a/src/gui/PortPropertiesWindow.hpp b/src/gui/PortPropertiesWindow.hpp index 63b27192..2cf160bc 100644 --- a/src/gui/PortPropertiesWindow.hpp +++ b/src/gui/PortPropertiesWindow.hpp @@ -22,7 +22,6 @@ #include #include "raul/SharedPtr.hpp" #include "client/PortModel.hpp" -using namespace Ingen::Client; namespace Ingen { namespace GUI { @@ -39,10 +38,10 @@ class PortPropertiesWindow : public Gtk::Window public: PortPropertiesWindow(BaseObjectType* cobject, const Glib::RefPtr& refGlade); - void present(SharedPtr port_model); + void present(SharedPtr port_model); private: - void variable_change(const string& key, const Atom& value); + void variable_change(const Raul::URI& key, const Raul::Atom& value); void min_changed(); void max_changed(); @@ -54,12 +53,12 @@ private: float _initial_min; float _initial_max; - SharedPtr _port_model; - Gtk::SpinButton* _min_spinner; - Gtk::SpinButton* _max_spinner; - Gtk::Button* _cancel_button; - Gtk::Button* _ok_button; - std::list _connections; + SharedPtr _port_model; + Gtk::SpinButton* _min_spinner; + Gtk::SpinButton* _max_spinner; + Gtk::Button* _cancel_button; + Gtk::Button* _ok_button; + std::list _connections; }; } // namespace GUI -- cgit v1.2.1