summaryrefslogtreecommitdiffstats
path: root/src/gui/Arc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Arc.hpp')
-rw-r--r--src/gui/Arc.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/Arc.hpp b/src/gui/Arc.hpp
index 382ca305..4eedde88 100644
--- a/src/gui/Arc.hpp
+++ b/src/gui/Arc.hpp
@@ -22,11 +22,11 @@
#include "ganv/Edge.hpp"
#include "ingen/types.hpp"
-namespace Ingen {
+namespace ingen {
-namespace Client { class ArcModel; }
+namespace client { class ArcModel; }
-namespace GUI {
+namespace gui {
/** An Arc (directed edge) in a Graph.
*
@@ -36,17 +36,17 @@ class Arc : public Ganv::Edge
{
public:
Arc(Ganv::Canvas& canvas,
- SPtr<const Client::ArcModel> model,
+ SPtr<const client::ArcModel> model,
Ganv::Node* src,
Ganv::Node* dst);
- SPtr<const Client::ArcModel> model() const { return _arc_model; }
+ SPtr<const client::ArcModel> model() const { return _arc_model; }
private:
- SPtr<const Client::ArcModel> _arc_model;
+ SPtr<const client::ArcModel> _arc_model;
};
-} // namespace GUI
-} // namespace Ingen
+} // namespace gui
+} // namespace ingen
#endif // INGEN_GUI_ARC_HPP