summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-11-18 14:45:49 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-11-18 14:45:49 +0000
commit1deb8d89b804e516e6b1fdb3fbad8dc1ab74f28c (patch)
tree64b63e3e592dde3d0c6dd5cd80eb6a25a875f0ad /src/verbs.cpp
parentFix bug [ 1685684 ] Document Properties: Grid number fields round too broadly (diff)
downloadinkscape-1deb8d89b804e516e6b1fdb3fbad8dc1ab74f28c.tar.gz
inkscape-1deb8d89b804e516e6b1fdb3fbad8dc1ab74f28c.zip
rename EditCloneOriginal to EditCloneSelectOriginal ; SP_VERB_EDIT_CLONE_ORIGINAL to SP_VERB_EDIT_CLONE_SELECT_ORIGINAL
(bzr r4109)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 1b2ae16b4..b893240ef 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -927,7 +927,7 @@ EditVerb::perform(SPAction *action, void *data, void */*pdata*/)
case SP_VERB_EDIT_UNLINK_CLONE:
sp_selection_unlink();
break;
- case SP_VERB_EDIT_CLONE_ORIGINAL:
+ case SP_VERB_EDIT_CLONE_SELECT_ORIGINAL:
sp_select_clone_original();
break;
case SP_VERB_EDIT_SELECTION_2_MARKER:
@@ -2223,7 +2223,7 @@ Verb *Verb::_base_verbs[] = {
N_("Create a clone (a copy linked to the original) of selected object"), "edit_clone"),
new EditVerb(SP_VERB_EDIT_UNLINK_CLONE, "EditUnlinkClone", N_("Unlin_k Clone"),
N_("Cut the selected clone's link to its original, turning it into a standalone object"), "edit_unlink_clone"),
- new EditVerb(SP_VERB_EDIT_CLONE_ORIGINAL, "EditCloneOriginal", N_("Select _Original"),
+ new EditVerb(SP_VERB_EDIT_CLONE_SELECT_ORIGINAL, "EditCloneSelectOriginal", N_("Select _Original"),
N_("Select the object to which the selected clone is linked"), "edit_select_original"),
// TRANSLATORS: Convert selection to a line marker
new EditVerb(SP_VERB_EDIT_SELECTION_2_MARKER, "ObjectsToMarker", N_("Objects to _Marker"),