summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/Port.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-28 03:36:59 +0000
committerDavid Robillard <d@drobilla.net>2008-09-28 03:36:59 +0000
commit9c665df722565ec8c994fba371dea69d5f934db4 (patch)
tree94bf5d88a67cad3dc3ad5ae789c0b62dd4aec0d3 /src/libs/gui/Port.cpp
parent7471821294765f6da694d14ff81581b31d1a983a (diff)
downloadingen-9c665df722565ec8c994fba371dea69d5f934db4.tar.gz
ingen-9c665df722565ec8c994fba371dea69d5f934db4.tar.bz2
ingen-9c665df722565ec8c994fba371dea69d5f934db4.zip
Fix potential crash when port blinkenports activity is followed by port destruction (before the blink is turned off).
Fix ticket #192. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1520 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/Port.cpp')
-rw-r--r--src/libs/gui/Port.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libs/gui/Port.cpp b/src/libs/gui/Port.cpp
index f675497b..0452edc6 100644
--- a/src/libs/gui/Port.cpp
+++ b/src/libs/gui/Port.cpp
@@ -73,6 +73,12 @@ Port::Port(boost::shared_ptr<FlowCanvas::Module> module, SharedPtr<PortModel> pm
}
+Port::~Port()
+{
+ App::instance().activity_port_destroyed(this);
+}
+
+
void
Port::create_menu()
{