summaryrefslogtreecommitdiffstats
path: root/src/gui/ObjectMenu.hpp
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/ObjectMenu.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/gui/ObjectMenu.hpp')
-rw-r--r--src/gui/ObjectMenu.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/ObjectMenu.hpp b/src/gui/ObjectMenu.hpp
index a9b07fd5..b0a0cc10 100644
--- a/src/gui/ObjectMenu.hpp
+++ b/src/gui/ObjectMenu.hpp
@@ -25,8 +25,8 @@
#include "ingen/client/ObjectModel.hpp"
#include "ingen/types.hpp"
-namespace Ingen {
-namespace GUI {
+namespace ingen {
+namespace gui {
class ObjectControlWindow;
class ObjectPropertiesWindow;
@@ -42,9 +42,9 @@ public:
ObjectMenu(BaseObjectType* cobject,
const Glib::RefPtr<Gtk::Builder>& xml);
- void init(App& app, SPtr<const Client::ObjectModel> object);
+ void init(App& app, SPtr<const client::ObjectModel> object);
- SPtr<const Client::ObjectModel> object() const { return _object; }
+ SPtr<const client::ObjectModel> object() const { return _object; }
App* app() const { return _app; }
protected:
@@ -58,7 +58,7 @@ protected:
void property_changed(const URI& predicate, const Atom& value);
App* _app;
- SPtr<const Client::ObjectModel> _object;
+ SPtr<const client::ObjectModel> _object;
Gtk::MenuItem* _learn_menuitem;
Gtk::MenuItem* _unlearn_menuitem;
Gtk::CheckMenuItem* _polyphonic_menuitem;
@@ -71,7 +71,7 @@ protected:
bool _enable_signal;
};
-} // namespace GUI
-} // namespace Ingen
+} // namespace gui
+} // namespace ingen
#endif // INGEN_GUI_OBJECTMENU_HPP