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/GraphWindow.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gui/GraphWindow.hpp') diff --git a/src/gui/GraphWindow.hpp b/src/gui/GraphWindow.hpp index b4e51d7b..69b8a3d4 100644 --- a/src/gui/GraphWindow.hpp +++ b/src/gui/GraphWindow.hpp @@ -26,13 +26,13 @@ #include "GraphBox.hpp" #include "Window.hpp" -namespace Ingen { +namespace ingen { -namespace Client { +namespace client { class GraphModel; } -namespace GUI { +namespace gui { /** A window for a graph. * @@ -48,7 +48,7 @@ public: void init_window(App& app); - SPtr graph() const { return _box->graph(); } + SPtr graph() const { return _box->graph(); } GraphBox* box() const { return _box; } bool documentation_is_visible() { return _box->documentation_is_visible(); } @@ -57,7 +57,7 @@ public: _box->set_documentation(doc, html); } - void show_port_status(const Client::PortModel* model, + void show_port_status(const client::PortModel* model, const Atom& value) { _box->show_port_status(model, value); } @@ -74,7 +74,7 @@ private: int _y; }; -} // namespace GUI -} // namespace Ingen +} // namespace gui +} // namespace ingen #endif // INGEN_GUI_GRAPH_WINDOW_HPP -- cgit v1.2.1