summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadSubpatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
commit5268059f5d4ca9325a78da688a7622898354215a (patch)
treeebf19a912d4bf98966b3bf7c289059b0644bf47e /src/gui/LoadSubpatchWindow.cpp
parent19928bb583e72802746b89e322f71ecc0fcb7427 (diff)
downloadingen-5268059f5d4ca9325a78da688a7622898354215a.tar.gz
ingen-5268059f5d4ca9325a78da688a7622898354215a.tar.bz2
ingen-5268059f5d4ca9325a78da688a7622898354215a.zip
Remove 'using' declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/LoadSubpatchWindow.cpp')
-rw-r--r--src/gui/LoadSubpatchWindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/LoadSubpatchWindow.cpp b/src/gui/LoadSubpatchWindow.cpp
index 3b935f68..302b5387 100644
--- a/src/gui/LoadSubpatchWindow.cpp
+++ b/src/gui/LoadSubpatchWindow.cpp
@@ -28,8 +28,10 @@
#include "PatchView.hpp"
#include "Configuration.hpp"
#include "ThreadedLoader.hpp"
+
using boost::optional;
using namespace std;
+using namespace Raul;
namespace Ingen {
namespace GUI {
@@ -146,7 +148,7 @@ LoadSubpatchWindow::ok_clicked()
assert(_patch);
// If unset load_patch will load values
- optional<Symbol> symbol;
+ optional<Raul::Symbol> symbol;
string name_str = "";
if (_name_from_user_radio->get_active()) {