diff options
author | David Robillard <d@drobilla.net> | 2011-12-01 04:50:27 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-01 04:50:27 +0000 |
commit | f983ad91b10979c27f052542658f07b5f816a917 (patch) | |
tree | e717a558cd329246433047f6ea7b3ea24579c96c /src | |
parent | 3ce44626f2e557494248d746f688f20eed4be197 (diff) | |
download | patchage-f983ad91b10979c27f052542658f07b5f816a917.tar.gz patchage-f983ad91b10979c27f052542658f07b5f816a917.tar.bz2 patchage-f983ad91b10979c27f052542658f07b5f816a917.zip |
FlowCanvas::Item => FlowCanvas::Shape.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3719 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/PatchageCanvas.cpp | 2 | ||||
-rw-r--r-- | src/PatchageCanvas.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageCanvas.cpp b/src/PatchageCanvas.cpp index c1471c8..44e844f 100644 --- a/src/PatchageCanvas.cpp +++ b/src/PatchageCanvas.cpp @@ -303,7 +303,7 @@ PatchageCanvas::make_connection(FlowCanvas::Joinable* tail, } bool -PatchageCanvas::remove_item(FlowCanvas::Item* i) +PatchageCanvas::remove_item(FlowCanvas::Shape* i) { // Remove item from canvas const bool ret = FlowCanvas::Canvas::remove_item(i); diff --git a/src/PatchageCanvas.hpp b/src/PatchageCanvas.hpp index f1120d8..efd403e 100644 --- a/src/PatchageCanvas.hpp +++ b/src/PatchageCanvas.hpp @@ -74,7 +74,7 @@ public: private: Patchage* _app; - bool remove_item(FlowCanvas::Item* i); + bool remove_item(FlowCanvas::Shape* i); bool on_event(GdkEvent* ev); bool on_connection_event(FlowCanvas::Connection* c, GdkEvent* ev); |