diff options
Diffstat (limited to 'src/client/NodeModel.cpp')
-rw-r--r-- | src/client/NodeModel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/NodeModel.cpp b/src/client/NodeModel.cpp index ce96e775..7847afb40 100644 --- a/src/client/NodeModel.cpp +++ b/src/client/NodeModel.cpp @@ -76,7 +76,7 @@ NodeModel::remove_port(SharedPtr<PortModel> port) break; } } - signal_removed_port.emit(port); + _signal_removed_port.emit(port); } void @@ -142,7 +142,7 @@ NodeModel::add_port(SharedPtr<PortModel> pm) assert(existing == _ports.end()); _ports.push_back(pm); - signal_new_port.emit(pm); + _signal_new_port.emit(pm); } SharedPtr<PortModel> |