diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-05-08 16:15:14 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-05-08 18:40:41 +0200 |
commit | 80ec4885e97b3fcb34b93e71ced52a4aab43ce93 (patch) | |
tree | 4afe9925d4de8835b678d85e269c16ee2e5c494c /xmloff | |
parent | 24cb5b3cf8ea893acd4d8a43e5405459d765b314 (diff) |
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ieb7933207ed921353a9681ce850d0f4a38d69759
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/XMLShapeStyleContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/XMLShapeStyleContext.cxx b/xmloff/source/draw/XMLShapeStyleContext.cxx index d366b967e912..4dbafca44003 100644 --- a/xmloff/source/draw/XMLShapeStyleContext.cxx +++ b/xmloff/source/draw/XMLShapeStyleContext.cxx @@ -195,7 +195,7 @@ void XMLShapeStyleContext::FillPropertySet( const Reference< beans::XPropertySet static ::rtl::OUString s_FillStyle(RTL_CONSTASCII_USTRINGPARAM("FillStyle")); // try to find a FillStyle entry and a value from it - for(a = rProperties.begin(); a != rProperties.end(); a++) + for(a = rProperties.begin(); a != rProperties.end(); ++a) { if(a->mnIndex != -1) { @@ -238,7 +238,7 @@ void XMLShapeStyleContext::FillPropertySet( const Reference< beans::XPropertySet static ::rtl::OUString s_BackGraphicLocation(RTL_CONSTASCII_USTRINGPARAM("BackGraphicLocation")); static ::rtl::OUString s_BackGraphicTransparency(RTL_CONSTASCII_USTRINGPARAM("BackGraphicTransparency")); - for(a = rProperties.begin(); a != rProperties.end(); a++) + for(a = rProperties.begin(); a != rProperties.end(); ++a) { if(a->mnIndex != -1) { |