diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-11-07 22:55:26 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-11-07 22:56:38 +0000 |
| commit | 7aacbbee8e7d24a601f576ddbeb68dc164902336 (patch) | |
| tree | 3e05299dac3316d107382efcf217e404fd0e6305 /src/selection-chemistry.cpp | |
| parent | Fixes to Filter Dialog (diff) | |
| parent | Misc. typos (diff) | |
| download | inkscape-7aacbbee8e7d24a601f576ddbeb68dc164902336.tar.gz inkscape-7aacbbee8e7d24a601f576ddbeb68dc164902336.zip | |
Merge branch 'luzpaz/inkscape-typos' (!119)
Diffstat (limited to 'src/selection-chemistry.cpp')
| -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()) { |
