diff options
| author | Sergei Izmailov <sergei.a.izmailov@gmail.com> | 2019-05-27 17:14:01 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2019-05-29 01:36:49 +0000 |
| commit | 9317c612c998b18b2334ea17ca89d9b9e2a97085 (patch) | |
| tree | bec9bfa82b712806583d03c4bcb9104ab4bdab7b /src | |
| parent | Rename "suppress-working-dialog" effect attribute to "application" (diff) | |
| download | inkscape-9317c612c998b18b2334ea17ca89d9b9e2a97085.tar.gz inkscape-9317c612c998b18b2334ea17ca89d9b9e2a97085.zip | |
Fix indentation
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/effect.cpp | 6 |
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")) { |
