summaryrefslogtreecommitdiffstats
path: root/src/client/PatchModel.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-18 23:05:06 +0000
committerDavid Robillard <d@drobilla.net>2012-08-18 23:05:06 +0000
commit317627ef40f7654c298aa1ac707851c852259e3a (patch)
tree38f7ed57aafb7b3b8e21e6caa3429a39207e4a9a /src/client/PatchModel.cpp
parent160b2baf7df8b960f22619c013b3197c0dc51c2b (diff)
downloadingen-317627ef40f7654c298aa1ac707851c852259e3a.tar.gz
ingen-317627ef40f7654c298aa1ac707851c852259e3a.tar.bz2
ingen-317627ef40f7654c298aa1ac707851c852259e3a.zip
Node => Block
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4720 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/PatchModel.cpp')
-rw-r--r--src/client/PatchModel.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/client/PatchModel.cpp b/src/client/PatchModel.cpp
index 72c17009..9b622cda 100644
--- a/src/client/PatchModel.cpp
+++ b/src/client/PatchModel.cpp
@@ -18,7 +18,7 @@
#include "ingen/client/ClientStore.hpp"
#include "ingen/client/EdgeModel.hpp"
-#include "ingen/client/NodeModel.hpp"
+#include "ingen/client/BlockModel.hpp"
#include "ingen/client/PatchModel.hpp"
#include "ingen/URIs.hpp"
@@ -38,9 +38,10 @@ PatchModel::add_child(SharedPtr<ObjectModel> c)
return;
}
- SharedPtr<NodeModel> nm = PtrCast<NodeModel>(c);
- if (nm)
- _signal_new_node.emit(nm);
+ SharedPtr<BlockModel> bm = PtrCast<BlockModel>(c);
+ if (bm) {
+ _signal_new_block.emit(bm);
+ }
}
bool
@@ -72,9 +73,10 @@ PatchModel::remove_child(SharedPtr<ObjectModel> o)
if (pm)
remove_port(pm);
- SharedPtr<NodeModel> nm = PtrCast<NodeModel>(o);
- if (nm)
- _signal_removed_node.emit(nm);
+ SharedPtr<BlockModel> bm = PtrCast<BlockModel>(o);
+ if (bm) {
+ _signal_removed_block.emit(bm);
+ }
return true;
}
@@ -84,7 +86,7 @@ PatchModel::clear()
{
_edges.clear();
- NodeModel::clear();
+ BlockModel::clear();
assert(_edges.empty());
assert(_ports.empty());