summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp
index 62d6f4590..e5cee3b8e 100644
--- a/src/extension/extension.cpp
+++ b/src/extension/extension.cpp
@@ -51,8 +51,7 @@ std::ofstream Extension::error_file;
a name and an ID the module will be left in an errored state.
*/
Extension::Extension (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp)
- : silent(false)
- , _gui(true)
+ : _gui(true)
, execution_env(nullptr)
{
repr = in_repr;
@@ -103,9 +102,6 @@ Extension::Extension (Inkscape::XML::Node * in_repr, Implementation::Implementat
} /* skip non-element nodes (see LP #1372200) */
}
} /* check command as a dependency (see LP #505920) */
- if (!strcmp(chname, "options")) {
- silent = !strcmp( child_repr->attribute("silent"), "true" );
- }
child_repr = child_repr->next();
}
@@ -320,16 +316,6 @@ Extension::get_repr ()
}
/**
- \return bool
- \brief Whether this extension should hide the "working, please wait" dialog
-*/
-bool
-Extension::is_silent ()
-{
- return silent;
-}
-
-/**
\return The textual id of this extension
\brief Get the ID of this extension - not a copy don't delete!
*/