summaryrefslogtreecommitdiffstats
path: root/src/extension
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension')
-rw-r--r--src/extension/effect.cpp3
-rw-r--r--src/extension/effect.h7
2 files changed, 0 insertions, 10 deletions
diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp
index ae06ff073..a38c3022a 100644
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
@@ -36,10 +36,7 @@ Inkscape::XML::Node * Effect::_filters_list = nullptr;
Effect::Effect (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp)
: Extension(in_repr, in_imp),
- _id_noprefs(Glib::ustring(get_id()) + ".noprefs"),
- _name_noprefs(Glib::ustring(_(get_name())) + _(" (No preferences)")),
_verb(get_id(), get_name(), nullptr, nullptr, this, true),
- _verb_nopref(_id_noprefs.c_str(), _name_noprefs.c_str(), nullptr, nullptr, this, false),
_menu_node(nullptr), _workingDialog(true),
_prefDialog(nullptr)
{
diff --git a/src/extension/effect.h b/src/extension/effect.h
index 1eb04cd15..d2b5606f2 100644
--- a/src/extension/effect.h
+++ b/src/extension/effect.h
@@ -87,15 +87,8 @@ class Effect : public Extension {
}
};
- /** \brief ID used for the verb without preferences */
- Glib::ustring _id_noprefs;
- /** \brief Name used for the verb without preferences */
- Glib::ustring _name_noprefs;
-
/** \brief The verb representing this effect. */
EffectVerb _verb;
- /** \brief The verb representing this effect. Without preferences. */
- EffectVerb _verb_nopref;
/** \brief Menu node created for this effect */
Inkscape::XML::Node * _menu_node;
/** \brief Whether a working dialog should be shown */