summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/DestroyEvent.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-20 22:17:10 +0000
committerDavid Robillard <d@drobilla.net>2007-09-20 22:17:10 +0000
commitc4faafc0d3b9c68d41706ad40edde1ecfb7f4338 (patch)
tree74e73fe18c1c64478a73a9babd4eeb346ca61d66 /src/libs/engine/events/DestroyEvent.hpp
parent615ceaaf519d0c42a9215c4835e1f7348f2e5dca (diff)
downloadingen-c4faafc0d3b9c68d41706ad40edde1ecfb7f4338.tar.gz
ingen-c4faafc0d3b9c68d41706ad40edde1ecfb7f4338.tar.bz2
ingen-c4faafc0d3b9c68d41706ad40edde1ecfb7f4338.zip
Fix deletion of multiple nodes instead of just one (basically fix everything going to hell after deleting a node).
git-svn-id: http://svn.drobilla.net/lad/ingen@743 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events/DestroyEvent.hpp')
-rw-r--r--src/libs/engine/events/DestroyEvent.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/events/DestroyEvent.hpp b/src/libs/engine/events/DestroyEvent.hpp
index ed4328f6..82024e90 100644
--- a/src/libs/engine/events/DestroyEvent.hpp
+++ b/src/libs/engine/events/DestroyEvent.hpp
@@ -61,7 +61,7 @@ public:
private:
Path _path;
ObjectStore::Objects::iterator _store_iterator;
- Table<Path,GraphObject*> _table;
+ Table<Path,GraphObject*> _removed_table;
Node* _node; ///< Same as _object if it is a Node, otherwise NULL
Port* _port; ///< Same as _object if it is a Port, otherwise NULL
DriverPort* _driver_port;