summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Lee <2431820-nathanal@users.noreply.gitlab.com>2019-04-10 01:34:16 +0000
committerThomas Holder <thomas@thomas-holder.de>2019-04-18 07:29:50 +0000
commitfb3d5a82f51bd3fe4a0540f542e2ecbc720a168f (patch)
treeeadf69d3b6afe5afbf9c976dbea17c505b822381
parentfix inbox#380 Rotation center flipped with y-axis (diff)
downloadinkscape-fb3d5a82f51bd3fe4a0540f542e2ecbc720a168f.tar.gz
inkscape-fb3d5a82f51bd3fe4a0540f542e2ecbc720a168f.zip
Remove unimplemented Find Dialog (obsolete)
-rw-r--r--src/verbs.cpp5
-rw-r--r--src/verbs.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index bfdae4e0b..51322f971 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2186,9 +2186,6 @@ void DialogVerb::perform(SPAction *action, void *data)
case SP_VERB_DIALOG_FIND:
dt->_dlg_mgr->showDialog("Find");
break;
- case SP_VERB_DIALOG_FINDREPLACE:
- // not implemented yet
- break;
case SP_VERB_DIALOG_SPELLCHECK:
dt->_dlg_mgr->showDialog("SpellCheck");
break;
@@ -3113,8 +3110,6 @@ Verb *Verb::_base_verbs[] = {
N_("View and edit the XML tree of the document"), INKSCAPE_ICON("dialog-xml-editor")),
new DialogVerb(SP_VERB_DIALOG_FIND, "DialogFind", N_("_Find/Replace..."), N_("Find objects in document"),
INKSCAPE_ICON("edit-find")),
- new DialogVerb(SP_VERB_DIALOG_FINDREPLACE, "DialogFindReplace", N_("Find and _Replace Text..."),
- N_("Find and replace text in document"), INKSCAPE_ICON("edit-find-replace")),
new DialogVerb(SP_VERB_DIALOG_SPELLCHECK, "DialogSpellcheck", N_("Check Spellin_g..."),
N_("Check spelling of text in document"), INKSCAPE_ICON("tools-check-spelling")),
new DialogVerb(SP_VERB_DIALOG_DEBUG, "DialogDebug", N_("_Messages..."), N_("View debug messages"),
diff --git a/src/verbs.h b/src/verbs.h
index b22a9eebe..3715bab80 100644
--- a/src/verbs.h
+++ b/src/verbs.h
@@ -323,7 +323,6 @@ enum {
SP_VERB_DIALOG_TEXT,
SP_VERB_DIALOG_XML_EDITOR,
SP_VERB_DIALOG_FIND,
- SP_VERB_DIALOG_FINDREPLACE,
SP_VERB_DIALOG_SPELLCHECK,
SP_VERB_DIALOG_DEBUG,
SP_VERB_DIALOG_TOGGLE,