summaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-16 21:03:00 +0000
committerDavid Robillard <d@drobilla.net>2008-11-16 21:03:00 +0000
commitcb93ffe78c76780c346ed10eae1c4484c79ed05c (patch)
treeee18d94c1f160871cf1ccb32f6289786190ada1f /src/shared
parent16e1283137ce7975866cc2ce070954ff9b04afc6 (diff)
downloadingen-cb93ffe78c76780c346ed10eae1c4484c79ed05c.tar.gz
ingen-cb93ffe78c76780c346ed10eae1c4484c79ed05c.tar.bz2
ingen-cb93ffe78c76780c346ed10eae1c4484c79ed05c.zip
Fix GUI tracking of property changes (e.g. polyphonic for stacked modules, fix ticket #253).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1733 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/ResourceImpl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/ResourceImpl.hpp b/src/shared/ResourceImpl.hpp
index 35259a3b..8181ed07 100644
--- a/src/shared/ResourceImpl.hpp
+++ b/src/shared/ResourceImpl.hpp
@@ -37,7 +37,7 @@ public:
const Properties& properties() const { return _properties; }
Properties& properties() { return _properties; }
- void set_property(const std::string& uri, const Raul::Atom& value) {
+ virtual void set_property(const std::string& uri, const Raul::Atom& value) {
_properties[uri] = value;
}