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 e2e6679..d770002 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -50,7 +50,7 @@ public: /** Returns the full name of this port, as "modulename:portname" */ std::string full_name() const { - return std::string(_module->get_label()) + ":" + get_label(); + return std::string(get_module()->get_label()) + ":" + get_label(); } bool on_click(GdkEventButton* ev) { |