summaryrefslogtreecommitdiffstats
path: root/src/sp-lpe-item.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-08-18 00:33:33 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-08-18 00:33:33 +0000
commitf15cd48d293f35724b55a84d3cb97717a6bd3cdc (patch)
tree448d9fdab197a6d950b54fc6706f181b1e4a72b7 /src/sp-lpe-item.cpp
parentRemove done_pathparam_set and friends because it currently isn't used any mor... (diff)
downloadinkscape-f15cd48d293f35724b55a84d3cb97717a6bd3cdc.tar.gz
inkscape-f15cd48d293f35724b55a84d3cb97717a6bd3cdc.zip
Rename acceptsNumParams() -> acceptsNumClicks() because it makes more sense
(bzr r6644)
Diffstat (limited to 'src/sp-lpe-item.cpp')
-rw-r--r--src/sp-lpe-item.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-lpe-item.cpp b/src/sp-lpe-item.cpp
index 7ff5a7f4b..6e2e65d7d 100644
--- a/src/sp-lpe-item.cpp
+++ b/src/sp-lpe-item.cpp
@@ -314,7 +314,7 @@ void sp_lpe_item_perform_path_effect(SPLPEItem *lpeitem, SPCurve *curve) {
Inkscape::LivePathEffect::Effect *lpe = lpeobj->lpe;
if (lpe->isVisible()) {
- if (lpe->acceptsNumParams() > 0 && !lpe->isReady()) {
+ if (lpe->acceptsNumClicks() > 0 && !lpe->isReady()) {
// if the effect expects mouse input before being applied and the input is not finished
// yet, we don't alter the path
return;