summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/fillproperties.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-08-30 23:11:44 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-08-30 23:13:04 +0200
commit01a87c102fe6bdaf3aa48a0ba17219e6e0983c4c (patch)
tree8eceb26b832e308924bdbea210e50c3eb61f9d59 /oox/source/drawingml/fillproperties.cxx
parent8bf60230255e0e8da66cafff578f148858cee4ca (diff)
Some cppcheck cleaning
Diffstat (limited to 'oox/source/drawingml/fillproperties.cxx')
-rw-r--r--oox/source/drawingml/fillproperties.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/fillproperties.cxx b/oox/source/drawingml/fillproperties.cxx
index 88e2949d4eab..bf9361260fc2 100644
--- a/oox/source/drawingml/fillproperties.cxx
+++ b/oox/source/drawingml/fillproperties.cxx
@@ -270,7 +270,7 @@ void FillProperties::pushToPropMap( ShapePropertyMap& rPropMap,
GradientFillProperties::GradientStopMap::const_iterator aIt = maGradientProps.maGradientStops.begin();
// Try to find the axial median
for(size_t i=0;i<nColorCount;i+=3)
- aIt++;
+ ++aIt;
// API StartColor is inner color in axial gradient
// aIt->second.hasColor() kind would be better than Color != API_RGB_WHITE
if( aGradient.StartColor == aGradient.EndColor &&