From 394b01da8e26dbe1b6a0520944d954ca0b16b1b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2018 17:31:12 +0200 Subject: Use lowercase namespace names --- src/gui/NodeModule.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gui/NodeModule.cpp') diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index 6163c1c1..8605e91d 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -43,11 +43,11 @@ #include "WindowFactory.hpp" #include "ingen_config.h" -namespace Ingen { +namespace ingen { -using namespace Client; +using namespace client; -namespace GUI { +namespace gui { NodeModule::NodeModule(GraphCanvas& canvas, SPtr block) @@ -178,7 +178,7 @@ NodeModule::show_human_names(bool b) } for (iterator i = begin(); i != end(); ++i) { - Ingen::GUI::Port* const port = dynamic_cast(*i); + ingen::gui::Port* const port = dynamic_cast(*i); Glib::ustring label(port->model()->symbol().c_str()); if (b) { const Atom& name_property = port->model()->get_property(uris.lv2_name); @@ -235,7 +235,7 @@ void NodeModule::plugin_changed() { for (iterator p = begin(); p != end(); ++p) { - dynamic_cast(*p)->update_metadata(); + dynamic_cast(*p)->update_metadata(); } } @@ -514,5 +514,5 @@ NodeModule::on_selected(gboolean selected) return true; } -} // namespace GUI -} // namespace Ingen +} // namespace gui +} // namespace ingen -- cgit v1.2.1