summaryrefslogtreecommitdiffstats
path: root/src/client/BlockModel.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
commit394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch)
tree1c079badda98cb366d72d59aabcb68fcc38760cf /src/client/BlockModel.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/client/BlockModel.cpp')
-rw-r--r--src/client/BlockModel.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/BlockModel.cpp b/src/client/BlockModel.cpp
index 910f7037..a15674d4 100644
--- a/src/client/BlockModel.cpp
+++ b/src/client/BlockModel.cpp
@@ -22,8 +22,8 @@
#include "ingen/URIs.hpp"
#include "ingen/World.hpp"
-namespace Ingen {
-namespace Client {
+namespace ingen {
+namespace client {
BlockModel::BlockModel(URIs& uris,
SPtr<PluginModel> plugin,
@@ -157,12 +157,12 @@ BlockModel::get_port(uint32_t index) const
return _ports[index];
}
-Ingen::Node*
+ingen::Node*
BlockModel::port(uint32_t index) const
{
assert(index < num_ports());
- return const_cast<Ingen::Node*>(
- dynamic_cast<const Ingen::Node*>(_ports[index].get()));
+ return const_cast<ingen::Node*>(
+ dynamic_cast<const ingen::Node*>(_ports[index].get()));
}
void
@@ -281,5 +281,5 @@ BlockModel::set(SPtr<ObjectModel> model)
ObjectModel::set(model);
}
-} // namespace Client
-} // namespace Ingen
+} // namespace client
+} // namespace ingen