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/PatchTreeWindow.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gui/PatchTreeWindow.cpp') diff --git a/src/gui/PatchTreeWindow.cpp b/src/gui/PatchTreeWindow.cpp index 24c56f1e..06eed694 100644 --- a/src/gui/PatchTreeWindow.cpp +++ b/src/gui/PatchTreeWindow.cpp @@ -27,7 +27,6 @@ #define LOG(s) s << "[PatchTreeWindow] " using namespace std; -using namespace Raul; namespace Ingen { @@ -162,7 +161,7 @@ PatchTreeWindow::show_patch_menu(GdkEventButton* ev) Gtk::TreeModel::Row row = *active; SharedPtr pm = row[_patch_tree_columns.patch_model_col]; if (pm) - warn << "TODO: patch menu from tree window" << endl; + Raul::warn << "TODO: patch menu from tree window" << endl; } } @@ -194,8 +193,9 @@ PatchTreeWindow::event_patch_enabled_toggled(const Glib::ustring& path_str) } void -PatchTreeWindow::patch_property_changed(const URI& key, const Atom& value, - SharedPtr patch) +PatchTreeWindow::patch_property_changed(const Raul::URI& key, + const Raul::Atom& value, + SharedPtr patch) { const URIs& uris = _app->uris(); _enable_signal = false; @@ -205,7 +205,7 @@ PatchTreeWindow::patch_property_changed(const URI& key, const Atom& value, Gtk::TreeModel::Row row = *i; row[_patch_tree_columns.enabled_col] = value.get_bool(); } else { - LOG(error) << "Unable to find patch " << patch->path() << endl; + LOG(Raul::error) << "Unable to find patch " << patch->path() << endl; } } _enable_signal = true; @@ -223,7 +223,7 @@ PatchTreeWindow::patch_moved(SharedPtr patch) Gtk::TreeModel::Row row = *i; row[_patch_tree_columns.name_col] = patch->symbol().c_str(); } else { - LOG(error) << "Unable to find patch " << patch->path() << endl; + LOG(Raul::error) << "Unable to find patch " << patch->path() << endl; } _enable_signal = true; -- cgit v1.2.1