aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodePropertiesWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/NodePropertiesWindow.hpp')
-rw-r--r--src/gui/NodePropertiesWindow.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/NodePropertiesWindow.hpp b/src/gui/NodePropertiesWindow.hpp
index 78a5285..002f0cd 100644
--- a/src/gui/NodePropertiesWindow.hpp
+++ b/src/gui/NodePropertiesWindow.hpp
@@ -22,11 +22,11 @@
#include "machina/types.hpp"
-namespace Machina {
+namespace machina {
-namespace Client { class ClientObject; }
+namespace client { class ClientObject; }
-namespace GUI {
+namespace gui {
class NodePropertiesWindow
: public Gtk::Dialog
@@ -38,10 +38,10 @@ public:
~NodePropertiesWindow();
static void present(Gtk::Window* parent,
- SPtr<Machina::Client::ClientObject> node);
+ SPtr<machina::client::ClientObject> node);
private:
- void set_node(SPtr<Machina::Client::ClientObject> node);
+ void set_node(SPtr<machina::client::ClientObject> node);
void apply_clicked();
void cancel_clicked();
@@ -49,7 +49,7 @@ private:
static NodePropertiesWindow* _instance;
- SPtr<Machina::Client::ClientObject> _node;
+ SPtr<machina::client::ClientObject> _node;
Gtk::SpinButton* _note_spinbutton;
Gtk::SpinButton* _duration_spinbutton;
@@ -58,7 +58,7 @@ private:
Gtk::Button* _ok_button;
};
-} // namespace Machina
-} // namespace GUI
+} // namespace machina
+} // namespace gui
#endif // NODEPROPERTIESWINDOW_HPP