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/server/PortImpl.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/server/PortImpl.cpp') diff --git a/src/server/PortImpl.cpp b/src/server/PortImpl.cpp index 355774dd..f03939d3 100644 --- a/src/server/PortImpl.cpp +++ b/src/server/PortImpl.cpp @@ -28,8 +28,8 @@ #include "PortType.hpp" #include "ThreadManager.hpp" -namespace Ingen { -namespace Server { +namespace ingen { +namespace server { static const uint32_t monitor_rate = 25.0; // Hz @@ -79,7 +79,7 @@ PortImpl::PortImpl(BufferFactory& bufs, assert(block != nullptr); assert(_poly > 0); - const Ingen::URIs& uris = bufs.uris(); + const ingen::URIs& uris = bufs.uris(); set_type(type, buffer_type); @@ -128,8 +128,8 @@ PortImpl::setup_buffers(RunContext& ctx, BufferFactory& bufs, uint32_t poly) void PortImpl::set_type(PortType port_type, LV2_URID buffer_type) { - const Ingen::URIs& uris = _bufs.uris(); - Ingen::World* world = _bufs.engine().world(); + const ingen::URIs& uris = _bufs.uris(); + ingen::World* world = _bufs.engine().world(); // Update type properties so clients are aware of current type remove_property(uris.rdf_type, uris.lv2_AudioPort); @@ -565,5 +565,5 @@ PortImpl::post_process(RunContext& context) monitor(context); } -} // namespace Server -} // namespace Ingen +} // namespace server +} // namespace ingen -- cgit v1.2.1