diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-11-03 01:17:35 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-11-03 01:17:35 +0000 |
| commit | bc776cf2ee8744fb0b49cb3ef9f53e835515624b (patch) | |
| tree | e7ce49e8b4a222bcb57ec45f003e50a57fa9e233 /src/verbs.cpp | |
| parent | Merge branch 'master' into menuInverseClipMask (diff) | |
| download | inkscape-bc776cf2ee8744fb0b49cb3ef9f53e835515624b.tar.gz inkscape-bc776cf2ee8744fb0b49cb3ef9f53e835515624b.zip | |
Rename wrong named function
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index 27fc29dd4..d0975af16 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -1597,8 +1597,7 @@ void ObjectVerb::perform( SPAction *action, void *data) break; case SP_VERB_OBJECT_SET_INVERSE_MASK: sel->setMask(false, false); - using Inkscape::LivePathEffect; - sp_inverse_powermask(sp_action_get_selection(action)); + Inkscape::LivePathEffect::sp_inverse_powermask(sp_action_get_selection(action)); break; case SP_VERB_OBJECT_EDIT_MASK: sel->editMask(false); @@ -1611,8 +1610,7 @@ void ObjectVerb::perform( SPAction *action, void *data) break; case SP_VERB_OBJECT_SET_INVERSE_CLIPPATH: sel->setMask(true, false); - using Inkscape::LivePathEffect; - sp_inverse_powerclip(sp_action_get_selection(action)); + Inkscape::LivePathEffect::sp_inverse_powerclip(sp_action_get_selection(action)); break; case SP_VERB_OBJECT_CREATE_CLIP_GROUP: sel->setClipGroup(); |
