From a42744e1068a8630d8034df73bb344ca21a53b32 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 16 Aug 2012 13:19:39 +0000 Subject: Remove all 'using namespace Raul'. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4715 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/WidgetFactory.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/gui/WidgetFactory.cpp') diff --git a/src/gui/WidgetFactory.cpp b/src/gui/WidgetFactory.cpp index 5e5b987a..31749ffe 100644 --- a/src/gui/WidgetFactory.cpp +++ b/src/gui/WidgetFactory.cpp @@ -24,7 +24,6 @@ #include "WidgetFactory.hpp" using namespace std; -using namespace Raul; namespace Ingen { namespace GUI { @@ -60,8 +59,8 @@ WidgetFactory::find_ui_file() if (is_readable(ui_filename)) return; - error << "[WidgetFactory] Unable to find ingen_gui.ui in " - << INGEN_DATA_DIR << endl; + Raul::error << "[WidgetFactory] Unable to find ingen_gui.ui in " + << INGEN_DATA_DIR << endl; throw std::runtime_error("Unable to find UI file"); } @@ -77,7 +76,7 @@ WidgetFactory::create(const string& toplevel_widget) else return Gtk::Builder::create_from_file(ui_filename, toplevel_widget.c_str()); } catch (const Gtk::BuilderError& ex) { - error << "[WidgetFactory] " << ex.what() << endl; + Raul::error << "[WidgetFactory] " << ex.what() << endl; throw ex; } } -- cgit v1.2.1