summaryrefslogtreecommitdiffstats
path: root/src/desktop-style.cpp
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2013-04-28 11:06:53 +0000
committerKris <Kris.De.Gussem@hotmail.com>2013-04-28 11:06:53 +0000
commit16ac2bbcaba3dde76484f5161a433b39f8a31a12 (patch)
treef6b9c13d4eafa5afbe8657eb0a1aed954f811c24 /src/desktop-style.cpp
parentupdate bbox when Filter General Settings modified (Bug 960986) (diff)
downloadinkscape-16ac2bbcaba3dde76484f5161a433b39f8a31a12.tar.gz
inkscape-16ac2bbcaba3dde76484f5161a433b39f8a31a12.zip
minor cppcheck stuff
(bzr r12307)
Diffstat (limited to 'src/desktop-style.cpp')
-rw-r--r--src/desktop-style.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp
index 40132ec58..c632f9033 100644
--- a/src/desktop-style.cpp
+++ b/src/desktop-style.cpp
@@ -501,7 +501,8 @@ objects_query_fillstroke (GSList *objects, SPStyle *style_res, bool const isfill
|| SP_IS_FLOWTSPAN(parent) || SP_IS_FLOWLINE(parent));
// 1. Bail out with QUERY_STYLE_MULTIPLE_DIFFERENT if necessary
-
+
+ // cppcheck-suppress comparisonOfBoolWithInt
if ((!paintImpossible) && (!paint->isSameType(*paint_res) || (paint_res->set != paint_effectively_set))) {
return QUERY_STYLE_MULTIPLE_DIFFERENT; // different types of paint
}