diff options
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r-- | src/PatchagePort.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index 49f0b57..8e4c188 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -62,7 +62,7 @@ public: #endif /** Returns the full name of this port, as "modulename:portname" */ - std::string full_name() const { return _module.lock()->name() + ":" + _name; } + std::string full_name() const { return _module->name() + ":" + _name; } PortType type() const { return _type; } |