From f8b71cd0d19b79d6bffee9e119677502552fcb49 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 4 Dec 2011 00:27:01 +0000 Subject: Remove redundant _canvas field from Item. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3783 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/NodeModule.cpp | 4 ++-- src/gui/PatchPortModule.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index b478e419..e9918068 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -407,9 +407,9 @@ NodeModule::property_changed(const URI& key, const Atom& value) } else if (key == uris.ingen_selected) { if (value.get_bool() != get_selected()) { if (value.get_bool()) - _canvas->select_item(this); + canvas()->select_item(this); else - _canvas->unselect_item(this); + canvas()->unselect_item(this); } } break; diff --git a/src/gui/PatchPortModule.cpp b/src/gui/PatchPortModule.cpp index 2083b929..95118cea 100644 --- a/src/gui/PatchPortModule.cpp +++ b/src/gui/PatchPortModule.cpp @@ -154,9 +154,9 @@ PatchPortModule::property_changed(const URI& key, const Atom& value) } else if (key == uris.ingen_selected) { if (value.get_bool() != get_selected()) { if (value.get_bool()) { - _canvas->select_item(this); + canvas()->select_item(this); } else { - _canvas->unselect_item(this); + canvas()->unselect_item(this); } } } -- cgit v1.2.1