diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-09-16 00:48:05 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-09-16 00:48:05 +0200 |
commit | 7389140c1a7a2f5b370f0a54f460c70b6fa55261 (patch) | |
tree | f976065b0845402ffce38efe711097b3911dfa2b /sd/qa | |
parent | 1e088494853ee93ded3fcefab23052fb7f07f620 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I4028296dd86eef2b8f84cab15eba3c4c15b18c6f
Diffstat (limited to 'sd/qa')
-rw-r--r-- | sd/qa/unit/regression-test.cxx | 2 |
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) |