diff options
author | David Robillard <d@drobilla.net> | 2008-09-28 03:36:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-28 03:36:59 +0000 |
commit | 9c665df722565ec8c994fba371dea69d5f934db4 (patch) | |
tree | 94bf5d88a67cad3dc3ad5ae789c0b62dd4aec0d3 /src/libs/gui/App.hpp | |
parent | 7471821294765f6da694d14ff81581b31d1a983a (diff) | |
download | ingen-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/App.hpp')
-rw-r--r-- | src/libs/gui/App.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/gui/App.hpp b/src/libs/gui/App.hpp index a693b729..08ceb271 100644 --- a/src/libs/gui/App.hpp +++ b/src/libs/gui/App.hpp @@ -98,6 +98,7 @@ public: void quit(); void port_activity(Port* port); + void activity_port_destroyed(Port* port); bool signal() const { return _enable_signal; } bool disable_signals() { bool old = _enable_signal; _enable_signal = false; return old; } @@ -163,7 +164,6 @@ protected: Ingen::Shared::World* _world; - /// <Port, whether it has been seen in gtk callback yet> typedef std::map<Port*, bool> ActivityPorts; ActivityPorts _activity_ports; |