summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadPatchWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
committerDavid Robillard <d@drobilla.net>2012-04-28 01:10:26 +0000
commit70f4bcdde45e94dbe27300a5069994aebc523cab (patch)
tree049b88a7adfb4c11d4fb3643024422ce8b20ab32 /src/gui/LoadPatchWindow.hpp
parentb08a8a15fd136ab8323e282484a5a96d698dc808 (diff)
downloadingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.gz
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.tar.bz2
ingen-70f4bcdde45e94dbe27300a5069994aebc523cab.zip
Remove using declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4288 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/LoadPatchWindow.hpp')
-rw-r--r--src/gui/LoadPatchWindow.hpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/gui/LoadPatchWindow.hpp b/src/gui/LoadPatchWindow.hpp
index 5f69eb94..25194309 100644
--- a/src/gui/LoadPatchWindow.hpp
+++ b/src/gui/LoadPatchWindow.hpp
@@ -23,12 +23,9 @@
#include "ingen/GraphObject.hpp"
-using namespace Ingen::Shared;
-
namespace Ingen {
namespace Client { class PatchModel; }
-using Ingen::Client::PatchModel;
namespace GUI {
@@ -46,11 +43,11 @@ public:
void init(App& app) { _app = &app; }
- void set_patch(SharedPtr<const PatchModel> patch);
+ void set_patch(SharedPtr<const Client::PatchModel> patch);
- void present(SharedPtr<const PatchModel> patch,
- bool import,
- GraphObject::Properties data);
+ void present(SharedPtr<const Client::PatchModel> patch,
+ bool import,
+ GraphObject::Properties data);
protected:
void on_show();
@@ -70,7 +67,7 @@ private:
GraphObject::Properties _initial_data;
- SharedPtr<const PatchModel> _patch;
+ SharedPtr<const Client::PatchModel> _patch;
Gtk::Label* _symbol_label;
Gtk::Entry* _symbol_entry;