summaryrefslogtreecommitdiffstats
path: root/src/gui/ingen_gui.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/gui/ingen_gui.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/gui/ingen_gui.cpp')
-rw-r--r--src/gui/ingen_gui.cpp18
1 files changed, 9 insertions, 9 deletions
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<char>());
@@ -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<Interface>(new QueuedInterface(sci));
}
- SPtr<GUI::App> app;
+ SPtr<gui::App> 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"