diff options
author | David Robillard <d@drobilla.net> | 2011-12-01 20:53:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-01 20:53:28 +0000 |
commit | ab32c5c1c32beacfd34489683627ca253966bc6b (patch) | |
tree | e0f1d19711622a7cade5700fee9700645ace27cd | |
parent | f983ad91b10979c27f052542658f07b5f816a917 (diff) | |
download | patchage-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
-rw-r--r-- | src/PatchageModule.cpp | 2 |
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); } |