aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/EdgeView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/EdgeView.cpp')
-rw-r--r--src/gui/EdgeView.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/EdgeView.cpp b/src/gui/EdgeView.cpp
index f7c154b..5f57be6 100644
--- a/src/gui/EdgeView.cpp
+++ b/src/gui/EdgeView.cpp
@@ -15,7 +15,7 @@
* along with Machina. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "flowcanvas/Canvas.hpp"
+#include "ganv/Canvas.hpp"
#include "machina/Controller.hpp"
#include "machina/types.hpp"
@@ -60,13 +60,13 @@ inline static uint32_t edge_color(float prob)
/* end probability colour stuff */
-using namespace FlowCanvas;
+using namespace Ganv;
EdgeView::EdgeView(Canvas& canvas,
SharedPtr<NodeView> src,
SharedPtr<NodeView> dst,
SharedPtr<Machina::Client::ClientObject> edge)
- : FlowCanvas::Edge(canvas, src.get(), dst.get(), 0x9FA0A0F4, true)
+ : Ganv::Edge(canvas, src.get(), dst.get(), 0x9FA0A0F4, true)
, _edge(edge)
{
set_color(edge_color(probability()));