diff options
Diffstat (limited to 'src/server/events/Delete.cpp')
-rw-r--r-- | src/server/events/Delete.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/events/Delete.cpp b/src/server/events/Delete.cpp index b16a1f8d..5a88de9f 100644 --- a/src/server/events/Delete.cpp +++ b/src/server/events/Delete.cpp @@ -87,7 +87,7 @@ Delete::pre_process() if (_node && !_path.is_root()) { assert(_node->parent_patch()); - _patch_node_listnode = _node->parent_patch()->remove_node(_path.symbol()); + _patch_node_listnode = _node->parent_patch()->remove_node(Raul::Symbol(_path.symbol())); if (_patch_node_listnode) { assert(_patch_node_listnode->elem() == _node.get()); @@ -100,7 +100,7 @@ Delete::pre_process() } } else if (_port) { assert(_port->parent_patch()); - _patch_port_listnode = _port->parent_patch()->remove_port(_path.symbol()); + _patch_port_listnode = _port->parent_patch()->remove_port(Raul::Symbol(_path.symbol())); if (_patch_port_listnode) { assert(_patch_port_listnode->elem() == _port.get()); |