diff options
Diffstat (limited to 'src/libs/engine/events/DestroyEvent.hpp')
-rw-r--r-- | src/libs/engine/events/DestroyEvent.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/engine/events/DestroyEvent.hpp b/src/libs/engine/events/DestroyEvent.hpp index 4a82c5bb..134290b1 100644 --- a/src/libs/engine/events/DestroyEvent.hpp +++ b/src/libs/engine/events/DestroyEvent.hpp @@ -60,7 +60,6 @@ public: private: Path _path; ObjectStore::Objects::iterator _store_iterator; - SharedPtr< Table<Path, SharedPtr<Shared::GraphObject> > > _removed_table; SharedPtr<NodeImpl> _node; ///< Non-NULL iff a node SharedPtr<PortImpl> _port; ///< Non-NULL iff a port DriverPort* _driver_port; @@ -70,6 +69,8 @@ private: CompiledPatch* _compiled_patch; ///< Patch's new process order DisconnectNodeEvent* _disconnect_node_event; DisconnectPortEvent* _disconnect_port_event; + + SharedPtr< Table<Path, SharedPtr<Shared::GraphObject> > > _removed_table; }; |