diff options
author | David Robillard <d@drobilla.net> | 2011-12-02 05:09:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-02 05:09:20 +0000 |
commit | e666b45e2297469388c129562b428cbca2036e9d (patch) | |
tree | a7ce00a2af148b981af1ca8c7ce92c604098dc2e /src | |
parent | c411f3ec2c55a2d9b0bda0c5db000439b86856e8 (diff) | |
download | patchage-e666b45e2297469388c129562b428cbca2036e9d.tar.gz patchage-e666b45e2297469388c129562b428cbca2036e9d.tar.bz2 patchage-e666b45e2297469388c129562b428cbca2036e9d.zip |
Use Joinable shape and remove Node::_circle.
Remove unused Shape::load_location().
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3746 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/Patchage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp index c06809e..e815891 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -417,7 +417,7 @@ Patchage::update_state() { for (FlowCanvas::Canvas::Items::const_iterator i = _canvas->items().begin(); i != _canvas->items().end(); ++i) { - FlowCanvas::Module* module = dynamic_cast<FlowCanvas::Module*>(*i); + PatchageModule* module = dynamic_cast<PatchageModule*>(*i); if (module) module->load_location(); } |