summaryrefslogtreecommitdiffstats
path: root/src/gui/SubpatchModule.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
commitc06607a48b86c00fb526228e737e978bcfa7602f (patch)
tree1395f80f249b6a0402459430c4a260dce3f59a33 /src/gui/SubpatchModule.cpp
parentf0a75a3f1d835bc235953d03e1b219bc8d6fcfab (diff)
downloadingen-c06607a48b86c00fb526228e737e978bcfa7602f.tar.gz
ingen-c06607a48b86c00fb526228e737e978bcfa7602f.tar.bz2
ingen-c06607a48b86c00fb526228e737e978bcfa7602f.zip
Use consistent property wrappers for x and y coordinates.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3730 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/SubpatchModule.cpp')
-rw-r--r--src/gui/SubpatchModule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/SubpatchModule.cpp b/src/gui/SubpatchModule.cpp
index 4dbb56a5..51c41493 100644
--- a/src/gui/SubpatchModule.cpp
+++ b/src/gui/SubpatchModule.cpp
@@ -63,8 +63,8 @@ SubpatchModule::on_double_click(GdkEventButton* event)
void
SubpatchModule::store_location()
{
- const Atom x(static_cast<float>(property_x()));
- const Atom y(static_cast<float>(property_y()));
+ const Atom x(static_cast<float>(get_x()));
+ const Atom y(static_cast<float>(get_y()));
const URIs& uris = app().uris();