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/ingen_gui.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/gui/ingen_gui.cpp') diff --git a/src/gui/ingen_gui.cpp b/src/gui/ingen_gui.cpp index 677296fd..cf1fb88f 100644 --- a/src/gui/ingen_gui.cpp +++ b/src/gui/ingen_gui.cpp @@ -21,11 +21,11 @@ #include "App.hpp" -namespace Ingen { -namespace GUI { +namespace ingen { +namespace gui { struct GUIModule : public Module { - using SigClientInterface = Client::SigClientInterface; + using SigClientInterface = client::SigClientInterface; void load(World* world) { URI uri(world->conf().option("connect").ptr()); @@ -37,7 +37,7 @@ struct GUIModule : public Module { world->interface()->set_respondee(make_client(world)); } - app = GUI::App::create(world); + app = gui::App::create(world); } void run(World* world) { @@ -49,19 +49,19 @@ struct GUIModule : public Module { return world->engine() ? sci : SPtr(new QueuedInterface(sci)); } - SPtr app; + SPtr app; }; -} // namespace GUI -} // namespace Ingen +} // namespace gui +} // namespace ingen extern "C" { -Ingen::Module* +ingen::Module* ingen_module_load() { Glib::thread_init(); - return new Ingen::GUI::GUIModule(); + return new ingen::gui::GUIModule(); } } // extern "C" -- cgit v1.2.1