summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index f968ec5c0..639ad93a4 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -319,10 +319,10 @@ Effect::registerKnotHolderHandle(SPKnotHolderSetFunc set_func, SPKnotHolderGetFu
// TODO: allow for adding click_functions and description strings, too
void
-Effect::addHandles(SPKnotHolder *knotholder) {
+Effect::addHandles(KnotHolder *knotholder) {
std::vector<std::pair<SPKnotHolderSetFunc, SPKnotHolderGetFunc> >::iterator i;
for (i = knotholder_func_vector.begin(); i != knotholder_func_vector.end(); ++i) {
- sp_knot_holder_add(knotholder, i->first, i->second, NULL, (""));
+ //knotholder->add(i->first, i->second, NULL, (""));
}
}