summaryrefslogtreecommitdiffstats
path: root/src/gui/Style.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/Style.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/gui/Style.cpp')
-rw-r--r--src/gui/Style.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/Style.cpp b/src/gui/Style.cpp
index 81e6fb6c..3a122e45 100644
--- a/src/gui/Style.cpp
+++ b/src/gui/Style.cpp
@@ -30,10 +30,10 @@
#include "Style.hpp"
#include "Port.hpp"
-namespace Ingen {
-namespace GUI {
+namespace ingen {
+namespace gui {
-using namespace Ingen::Client;
+using namespace ingen::client;
Style::Style(App& app)
// Colours from the Tango palette with modified V
@@ -82,7 +82,7 @@ Style::apply_settings()
}
uint32_t
-Style::get_port_color(const Client::PortModel* p)
+Style::get_port_color(const client::PortModel* p)
{
const URIs& uris = _app.uris();
if (p->is_a(uris.lv2_AudioPort)) {
@@ -102,5 +102,5 @@ Style::get_port_color(const Client::PortModel* p)
return 0x555555FF;
}
-} // namespace GUI
-} // namespace Ingen
+} // namespace gui
+} // namespace ingen