diff options
| author | Unknown <kunda@scribus.net> | 2017-11-07 18:55:26 +0000 |
|---|---|---|
| committer | Unknown <kunda@scribus.net> | 2017-11-07 18:55:26 +0000 |
| commit | 2659ce5a325688a3db9900d6d662e92048f0539e (patch) | |
| tree | f55a967bd07fcef78b1834ea9c21f6bd93b00cb0 /src/selection-chemistry.cpp | |
| parent | Set primitive filter area in feComposite and feMerge. Needed for tiling. (diff) | |
| download | inkscape-2659ce5a325688a3db9900d6d662e92048f0539e.tar.gz inkscape-2659ce5a325688a3db9900d6d662e92048f0539e.zip | |
Misc. typos
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt`
whereby whitelist file contained:
```
dum
iff
glight
substract
te
upto
```
Diffstat (limited to '')
| -rw-r--r-- | src/selection-chemistry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index b8a769d1c..efc378845 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -1,5 +1,5 @@ /** @file - * Miscellanous operations on selected items. + * Miscellaneous operations on selected items. */ /* Authors: * Lauris Kaplinski <lauris@kaplinski.com> @@ -1998,7 +1998,7 @@ std::vector<SPItem*> sp_get_same_fill_or_stroke_color(SPItem *sel, std::vector<S if (iter) { SPIPaint *iter_paint = (type == SP_FILL_COLOR) ? &(iter->style->fill) : &(iter->style->stroke); match = false; - if (sel_paint->isColor() && iter_paint->isColor() // color == color comparision doesnt seem to work here. + if (sel_paint->isColor() && iter_paint->isColor() // color == color comparison doesn't seem to work here. && (sel_paint->value.color.toRGBA32(1.0) == iter_paint->value.color.toRGBA32(1.0))) { match = true; } else if (sel_paint->isPaintserver() && iter_paint->isPaintserver()) { |
