diff options
author | David Robillard <d@drobilla.net> | 2011-06-06 18:05:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-06-06 18:05:47 +0000 |
commit | 67d2cb50843c73024758d6f73c35bae37070b67b (patch) | |
tree | ebeba1505b7a18238f49731ff164d920a6ceb497 /src/Patchage.hpp | |
parent | 654322e7d3dbeac6782ad2db1e9893389939b0ba (diff) | |
download | patchage-67d2cb50843c73024758d6f73c35bae37070b67b.tar.gz patchage-67d2cb50843c73024758d6f73c35bae37070b67b.tar.bz2 patchage-67d2cb50843c73024758d6f73c35bae37070b67b.zip |
Use a care pointer reference to containing module rather than boost::weak_ptr.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3364 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r-- | src/Patchage.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp index 048c1e4..69d44de 100644 --- a/src/Patchage.hpp +++ b/src/Patchage.hpp @@ -85,7 +85,7 @@ public: void update_state(); void store_window_location(); - void enqueue_resize(boost::shared_ptr<FlowCanvas::Module> module); + void enqueue_resize(FlowCanvas::Module* module); void flush_resize(); protected: @@ -139,7 +139,7 @@ protected: boost::shared_ptr<PatchageCanvas> _canvas; - std::set< boost::shared_ptr<FlowCanvas::Module> > _pending_resize; + std::set<FlowCanvas::Module*> _pending_resize; JackDriver* _jack_driver; StateManager* _state_manager; |