summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2016-09-23 13:07:49 +0000
committerShlomi Fish <shlomif@shlomifish.org>2016-09-23 13:07:49 +0000
commit68e4690a5c56e3f948c75cfd34ea1574d37ba4d2 (patch)
tree55913fe5360f2a5420964f9f1feb8f5ae3aa9a38
parentAdd missing space after a comma. (diff)
downloadinkscape-68e4690a5c56e3f948c75cfd34ea1574d37ba4d2.tar.gz
inkscape-68e4690a5c56e3f948c75cfd34ea1574d37ba4d2.zip
Remove "== true" and trailing whitespace.
(bzr r15100.1.22)
-rw-r--r--src/sp-lpe-item.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp-lpe-item.cpp b/src/sp-lpe-item.cpp
index 4719f98d0..dde1be734 100644
--- a/src/sp-lpe-item.cpp
+++ b/src/sp-lpe-item.cpp
@@ -476,7 +476,7 @@ void SPLPEItem::addPathEffect(LivePathEffectObject * new_lpeobj)
}
/**
- * If keep_path == true, the item should not be updated, effectively 'flattening' the LPE.
+ * If keep_path is true, the item should not be updated, effectively 'flattening' the LPE.
*/
void SPLPEItem::removeCurrentPathEffect(bool keep_paths)
{
@@ -486,7 +486,7 @@ void SPLPEItem::removeCurrentPathEffect(bool keep_paths)
if (Inkscape::LivePathEffect::Effect* effect_ = this->getCurrentLPE()) {
effect_->doOnRemove(this);
- }
+ }
PathEffectList new_list = *this->path_effect_list;
new_list.remove(lperef); //current lpe ref is always our 'own' pointer from the path_effect_list
this->getRepr()->setAttribute("inkscape:path-effect", patheffectlist_svg_string(new_list));
@@ -502,7 +502,7 @@ void SPLPEItem::removeCurrentPathEffect(bool keep_paths)
}
/**
- * If keep_path == true, the item should not be updated, effectively 'flattening' the LPE.
+ * If keep_path is true, the item should not be updated, effectively 'flattening' the LPE.
*/
void SPLPEItem::removeAllPathEffects(bool keep_paths)
{