aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodePropertiesWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-13 01:11:58 +0000
committerDavid Robillard <d@drobilla.net>2013-01-13 01:11:58 +0000
commit79acce6ded68062851b9e4ab4966c74e9fc7a714 (patch)
treec98649e6e7f9d7b59e8c2c5de811f6436d0fa522 /src/gui/NodePropertiesWindow.cpp
parent8941b58c8737d948f4c925955506da666ceb60ed (diff)
downloadmachina-79acce6ded68062851b9e4ab4966c74e9fc7a714.tar.gz
machina-79acce6ded68062851b9e4ab4966c74e9fc7a714.tar.bz2
machina-79acce6ded68062851b9e4ab4966c74e9fc7a714.zip
Use lowercase namespace names.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4945 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodePropertiesWindow.cpp')
-rw-r--r--src/gui/NodePropertiesWindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/NodePropertiesWindow.cpp b/src/gui/NodePropertiesWindow.cpp
index a58d649..bd275f5 100644
--- a/src/gui/NodePropertiesWindow.cpp
+++ b/src/gui/NodePropertiesWindow.cpp
@@ -21,8 +21,8 @@
using namespace std;
-namespace Machina {
-namespace GUI {
+namespace machina {
+namespace gui {
NodePropertiesWindow* NodePropertiesWindow::_instance = NULL;
@@ -88,7 +88,7 @@ NodePropertiesWindow::ok_clicked()
}
void
-NodePropertiesWindow::set_node(SPtr<Machina::Client::ClientObject> node)
+NodePropertiesWindow::set_node(SPtr<machina::client::ClientObject> node)
{
_node = node;
#if 0
@@ -109,7 +109,7 @@ NodePropertiesWindow::set_node(SPtr<Machina::Client::ClientObject> node)
void
NodePropertiesWindow::present(Gtk::Window* parent,
- SPtr<Machina::Client::ClientObject> node)
+ SPtr<machina::client::ClientObject> node)
{
if (!_instance) {
Glib::RefPtr<Gtk::Builder> xml = WidgetFactory::create();
@@ -125,5 +125,5 @@ NodePropertiesWindow::present(Gtk::Window* parent,
_instance->show();
}
-} // namespace Machina
-} // namespace GUI
+} // namespace machina
+} // namespace gui