summaryrefslogtreecommitdiffstats
path: root/src/PatchageCanvas.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-02 20:31:14 +0000
committerDavid Robillard <d@drobilla.net>2011-12-02 20:31:14 +0000
commit23ef587a9a9f118caff223de77014f64189a353e (patch)
treef1f6cd155de14c73bebd434e8b04966e371d335d /src/PatchageCanvas.cpp
parent1270cd18c270fb72874aa2523a9649d9209f12f1 (diff)
downloadpatchage-23ef587a9a9f118caff223de77014f64189a353e.tar.gz
patchage-23ef587a9a9f118caff223de77014f64189a353e.tar.bz2
patchage-23ef587a9a9f118caff223de77014f64189a353e.zip
Joinable => Node.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3751 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageCanvas.cpp')
-rw-r--r--src/PatchageCanvas.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp
index 720a73e..42f3393 100644
--- a/src/PatchageCanvas.cpp
+++ b/src/PatchageCanvas.cpp
@@ -177,8 +177,8 @@ PatchageCanvas::find_port_by_name(const std::string& client_name,
}
void
-PatchageCanvas::connect(FlowCanvas::Joinable* port1,
- FlowCanvas::Joinable* port2)
+PatchageCanvas::connect(FlowCanvas::Node* port1,
+ FlowCanvas::Node* port2)
{
PatchagePort* p1 = dynamic_cast<PatchagePort*>(port1);
PatchagePort* p2 = dynamic_cast<PatchagePort*>(port2);
@@ -200,8 +200,8 @@ PatchageCanvas::connect(FlowCanvas::Joinable* port1,
}
void
-PatchageCanvas::disconnect(FlowCanvas::Joinable* port1,
- FlowCanvas::Joinable* port2)
+PatchageCanvas::disconnect(FlowCanvas::Node* port1,
+ FlowCanvas::Node* port2)
{
PatchagePort* input = dynamic_cast<PatchagePort*>(port1);
PatchagePort* output = dynamic_cast<PatchagePort*>(port2);
@@ -290,9 +290,9 @@ PatchageCanvas::on_event(GdkEvent* ev)
}
bool
-PatchageCanvas::make_connection(FlowCanvas::Joinable* tail,
- FlowCanvas::Joinable* head,
- uint32_t color)
+PatchageCanvas::make_connection(FlowCanvas::Node* tail,
+ FlowCanvas::Node* head,
+ uint32_t color)
{
FlowCanvas::Edge* c = new FlowCanvas::Edge(
*this, tail, head, color);