diff options
author | David Robillard <d@drobilla.net> | 2012-08-16 13:19:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-16 13:19:39 +0000 |
commit | a42744e1068a8630d8034df73bb344ca21a53b32 (patch) | |
tree | 9ac34a22eba94f99536eb3e153813487a6ecb79b /src/gui/PatchTreeWindow.cpp | |
parent | 3649db06a9fa53f3dc7cf5a5115cdc0b6cfd695a (diff) | |
download | ingen-a42744e1068a8630d8034df73bb344ca21a53b32.tar.gz ingen-a42744e1068a8630d8034df73bb344ca21a53b32.tar.bz2 ingen-a42744e1068a8630d8034df73bb344ca21a53b32.zip |
Remove all 'using namespace Raul'.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4715 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchTreeWindow.cpp')
-rw-r--r-- | src/gui/PatchTreeWindow.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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<PatchModel> 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<PatchModel> patch) +PatchTreeWindow::patch_property_changed(const Raul::URI& key, + const Raul::Atom& value, + SharedPtr<PatchModel> 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<PatchModel> 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; |