summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-02 05:27:36 +0000
committerDavid Robillard <d@drobilla.net>2011-12-02 05:27:36 +0000
commit1270cd18c270fb72874aa2523a9649d9209f12f1 (patch)
treea0a0a3e218cb31b27daf96ed39960fef02699b35
parente666b45e2297469388c129562b428cbca2036e9d (diff)
downloadpatchage-1270cd18c270fb72874aa2523a9649d9209f12f1.tar.gz
patchage-1270cd18c270fb72874aa2523a9649d9209f12f1.tar.bz2
patchage-1270cd18c270fb72874aa2523a9649d9209f12f1.zip
Remove Shape::store_location() in favour of Joinable::signal_moved.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3747 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/PatchageModule.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index 8410403..fd7d0ef 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -26,6 +26,8 @@ PatchageModule::PatchageModule(
, _menu(NULL)
, _type(type)
{
+ signal_moved.connect(
+ sigc::mem_fun(this, &PatchageModule::store_location));
}
PatchageModule::~PatchageModule()