summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r--src/gui/NodeModule.cpp14
1 files changed, 7 insertions, 7 deletions
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<const BlockModel> 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<Ingen::GUI::Port*>(*i);
+ ingen::gui::Port* const port = dynamic_cast<ingen::gui::Port*>(*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<Ingen::GUI::Port*>(*p)->update_metadata();
+ dynamic_cast<ingen::gui::Port*>(*p)->update_metadata();
}
}
@@ -514,5 +514,5 @@ NodeModule::on_selected(gboolean selected)
return true;
}
-} // namespace GUI
-} // namespace Ingen
+} // namespace gui
+} // namespace ingen