diff options
author | David Robillard <d@drobilla.net> | 2010-02-04 17:21:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-04 17:21:44 +0000 |
commit | 7c19aa2a97c1e19b27b66c58a84c46489101950e (patch) | |
tree | 72b2fac98b6f69bc16770194900c0e0bec86311b /src/engine/events | |
parent | b8ef9bff8a46a682f68585aad7587bf081e8b7f8 (diff) | |
download | ingen-7c19aa2a97c1e19b27b66c58a84c46489101950e.tar.gz ingen-7c19aa2a97c1e19b27b66c58a84c46489101950e.tar.bz2 ingen-7c19aa2a97c1e19b27b66c58a84c46489101950e.zip |
Use std::string::empty where possible (faster, and less prone to C string errors).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2420 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events')
-rw-r--r-- | src/engine/events/CreateNode.cpp | 2 | ||||
-rw-r--r-- | src/engine/events/CreatePort.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/events/CreateNode.cpp b/src/engine/events/CreateNode.cpp index 426044ee..4f5b4877 100644 --- a/src/engine/events/CreateNode.cpp +++ b/src/engine/events/CreateNode.cpp @@ -83,7 +83,7 @@ CreateNode::pre_process() _patch = _engine.engine_store()->find_patch(_path.parent()); - _plugin = (_plugin_label == "") + _plugin = (_plugin_label.empty()) ? _engine.node_factory()->plugin(_plugin_uri.str()) : _engine.node_factory()->plugin(_plugin_type, _plugin_lib, _plugin_label); diff --git a/src/engine/events/CreatePort.cpp b/src/engine/events/CreatePort.cpp index b12f25dc..f1656019 100644 --- a/src/engine/events/CreatePort.cpp +++ b/src/engine/events/CreatePort.cpp @@ -98,6 +98,7 @@ CreatePort::pre_process() if (_patch->parent()) _patch_port->set_property(uris.rdf_instanceOf, _patch_port->meta_uri()); + _patch_port->properties().insert(_properties.begin(), _properties.end()); _patch_port->meta().properties().insert(_properties.begin(), _properties.end()); if (_patch_port) { |