diff options
Diffstat (limited to 'src/shared/Store.cpp')
-rw-r--r-- | src/shared/Store.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp index c3d427a9..c0d373d6 100644 --- a/src/shared/Store.cpp +++ b/src/shared/Store.cpp @@ -23,7 +23,6 @@ #include "ingen/shared/Store.hpp" using namespace std; -using namespace Raul; namespace Ingen { namespace Shared { @@ -32,7 +31,7 @@ void Store::add(GraphObject* o) { if (find(o->path()) != end()) { - error << "[Store] Attempt to add duplicate object " << o->path() << endl; + Raul::error << "[Store] Attempt to add duplicate object " << o->path() << endl; return; } |