summaryrefslogtreecommitdiffstats
path: root/src/extension/effect.cpp
diff options
context:
space:
mode:
authorSergei Izmailov <sergei.a.izmailov@gmail.com>2019-05-27 17:14:01 +0000
committerMartin Owens <doctormo@gmail.com>2019-05-29 01:36:49 +0000
commit9317c612c998b18b2334ea17ca89d9b9e2a97085 (patch)
treebec9bfa82b712806583d03c4bcb9104ab4bdab7b /src/extension/effect.cpp
parentRename "suppress-working-dialog" effect attribute to "application" (diff)
downloadinkscape-9317c612c998b18b2334ea17ca89d9b9e2a97085.tar.gz
inkscape-9317c612c998b18b2334ea17ca89d9b9e2a97085.zip
Fix indentation
Diffstat (limited to 'src/extension/effect.cpp')
-rw-r--r--src/extension/effect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp
index d0079e7cc..2b08e4da1 100644
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
@@ -58,13 +58,13 @@ Effect::Effect (Inkscape::XML::Node * in_repr, Implementation::Implementation *
for (Inkscape::XML::Node *child = repr->firstChild(); child != nullptr; child = child->next()) {
if (!strcmp(child->name(), INKSCAPE_EXTENSION_NS "effect")) {
if (child->attribute("needs-document") && !strcmp(child->attribute("needs-document"), "false")) {
- no_doc = true;
+ no_doc = true;
}
if (child->attribute("needs-live-preview") && !strcmp(child->attribute("needs-live-preview"), "false")) {
- no_live_preview = true;
+ no_live_preview = true;
}
if (child->attribute("application") && !strcmp(child->attribute("application"), "true")) {
- _workingDialog = false;
+ _workingDialog = false;
}
for (Inkscape::XML::Node *effect_child = child->firstChild(); effect_child != nullptr; effect_child = effect_child->next()) {
if (!strcmp(effect_child->name(), INKSCAPE_EXTENSION_NS "effects-menu")) {