summaryrefslogtreecommitdiffstats
path: root/src/Resource.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/Resource.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/Resource.cpp')
-rw-r--r--src/Resource.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Resource.cpp b/src/Resource.cpp
index 60e79642..a317ff67 100644
--- a/src/Resource.cpp
+++ b/src/Resource.cpp
@@ -111,14 +111,14 @@ bool
Resource::type(const URIs& uris,
const Properties& properties,
bool& patch,
- bool& node,
+ bool& block,
bool& port,
bool& is_output)
{
typedef Resource::Properties::const_iterator iterator;
const std::pair<iterator, iterator> types_range = properties.equal_range(uris.rdf_type);
- patch = node = port = is_output = false;
+ patch = block = port = is_output = false;
for (iterator i = types_range.first; i != types_range.second; ++i) {
const Raul::Atom& atom = i->second;
if (atom.type() != uris.forge.URI && atom.type() != uris.forge.URID) {
@@ -127,8 +127,8 @@ Resource::type(const URIs& uris,
if (atom == uris.ingen_Patch) {
patch = true;
- } else if (atom == uris.ingen_Node) {
- node = true;
+ } else if (atom == uris.ingen_Block) {
+ block = true;
} else if (atom == uris.lv2_InputPort) {
port = true;
is_output = false;
@@ -138,13 +138,13 @@ Resource::type(const URIs& uris,
}
}
- if (patch && node && !port) { // => patch
- node = false;
+ if (patch && block && !port) { // => patch
+ block = false;
return true;
- } else if (port && (patch || node)) { // nonsense
+ } else if (port && (patch || block)) { // nonsense
port = false;
return false;
- } else if (patch || node || port) { // recognized type
+ } else if (patch || block || port) { // recognized type
return true;
} else { // unknown
return false;