From 3deec6aba02bbff573bd81bfb05b6ba271693b6e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 6 Jan 2011 14:03:42 +0000 Subject: cppunit: prefer prefix variant --- sd/source/filter/html/pubdlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx index 89ef63a4e65f..0ee73d4be19f 100644 --- a/sd/source/filter/html/pubdlg.cxx +++ b/sd/source/filter/html/pubdlg.cxx @@ -964,7 +964,7 @@ void SdPublishingDlg::GetParameterSequence( Sequence< PropertyValue >& rParams ) rParams.realloc( aProps.size() ); PropertyValue* pParams = rParams.getArray(); - for( std::vector< PropertyValue >::iterator i = aProps.begin(); i != aProps.end(); i++ ) + for( std::vector< PropertyValue >::iterator i = aProps.begin(); i != aProps.end(); ++i ) { *pParams++ = (*i); } -- cgit