summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-06-17 20:51:09 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2018-08-05 00:31:06 +0000
commita989bfb85b3827e97881b096c11f4fa6beb58496 (patch)
tree80f3c8301a3d5eddf1f0b9eabdeafdb3256ab9a4 /src/selection-chemistry.cpp
parentRefactor with Tav help (diff)
downloadinkscape-a989bfb85b3827e97881b096c11f4fa6beb58496.tar.gz
inkscape-a989bfb85b3827e97881b096c11f4fa6beb58496.zip
Fixes compiling bugs
Diffstat (limited to 'src/selection-chemistry.cpp')
-rw-r--r--src/selection-chemistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index 3e1bb56aa..366ccbe33 100644
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -2157,7 +2157,7 @@ std::vector<SPItem*> sp_get_same_style(SPItem *sel, std::vector<SPItem*> &src, S
if (type == SP_STROKE_STYLE_DASHES|| type == SP_STROKE_STYLE_ALL || type==SP_STYLE_ALL) {
match = (sel_style->stroke_dasharray.set == iter_style->stroke_dasharray.set);
if (sel_style->stroke_dasharray.set && iter_style->stroke_dasharray.set) {
- match = (sel_style->stroke_dasharray.values == iter_style->stroke_dasharray.values);
+ match = (sel_style->stroke_dasharray == iter_style->stroke_dasharray);
}
}
match_g = match_g && match;