summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-01 20:53:28 +0000
committerDavid Robillard <d@drobilla.net>2011-12-01 20:53:28 +0000
commitab32c5c1c32beacfd34489683627ca253966bc6b (patch)
treee0f1d19711622a7cade5700fee9700645ace27cd /src/PatchageModule.cpp
parentf983ad91b10979c27f052542658f07b5f816a917 (diff)
downloadpatchage-ab32c5c1c32beacfd34489683627ca253966bc6b.tar.gz
patchage-ab32c5c1c32beacfd34489683627ca253966bc6b.tar.bz2
patchage-ab32c5c1c32beacfd34489683627ca253966bc6b.zip
Use consistent property wrappers for x and y coordinates.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3730 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r--src/PatchageModule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index e9743f5..8410403 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -106,7 +106,7 @@ PatchageModule::load_location()
void
PatchageModule::store_location()
{
- Coord loc(property_x(), property_y());
+ Coord loc(get_x(), get_y());
_app->state_manager()->set_module_location(_name, _type, loc);
}