summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-04 00:27:01 +0000
committerDavid Robillard <d@drobilla.net>2011-12-04 00:27:01 +0000
commitf8b71cd0d19b79d6bffee9e119677502552fcb49 (patch)
tree3ef4c1989c31d80966ea209893af0492f80b7df6 /src/gui/NodeModule.cpp
parent9393c08013974c53d398678f0c1b683a67ca1135 (diff)
downloadingen-f8b71cd0d19b79d6bffee9e119677502552fcb49.tar.gz
ingen-f8b71cd0d19b79d6bffee9e119677502552fcb49.tar.bz2
ingen-f8b71cd0d19b79d6bffee9e119677502552fcb49.zip
Remove redundant _canvas field from Item.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3783 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r--src/gui/NodeModule.cpp4
1 files changed, 2 insertions, 2 deletions
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;