summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-09-16 00:48:05 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-09-16 00:48:05 +0200
commit7389140c1a7a2f5b370f0a54f460c70b6fa55261 (patch)
treef976065b0845402ffce38efe711097b3911dfa2b /sd
parent1e088494853ee93ded3fcefab23052fb7f07f620 (diff)
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I4028296dd86eef2b8f84cab15eba3c4c15b18c6f
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/regression-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/regression-test.cxx b/sd/qa/unit/regression-test.cxx
index 6d6488c202d0..38d56358e19b 100644
--- a/sd/qa/unit/regression-test.cxx
+++ b/sd/qa/unit/regression-test.cxx
@@ -185,7 +185,7 @@ void SdFiltersTest::testN759180()
CPPUNIT_ASSERT(pULSpace);
CPPUNIT_ASSERT_MESSAGE( "Para bottom spacing is wrong!", pULSpace->GetLower() == 0 );
aEdit.GetCharAttribs(1, rLst);
- for( std::vector<EECharAttrib>::reverse_iterator it = rLst.rbegin(); it!=rLst.rend(); it++)
+ for( std::vector<EECharAttrib>::reverse_iterator it = rLst.rbegin(); it!=rLst.rend(); ++it)
{
const SvxFontHeightItem * pFontHeight = dynamic_cast<const SvxFontHeightItem *>((*it).pAttr);
if(pFontHeight)