summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-06 14:03:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-06 14:03:42 +0000
commit3deec6aba02bbff573bd81bfb05b6ba271693b6e (patch)
treea50373d0c6cb236346d6115535cb677b30d001ce
parent3bef32f4aec2c8e2bbe3be31fcb3b304eaf7658a (diff)
cppunit: prefer prefix variant
-rw-r--r--sd/source/filter/html/pubdlg.cxx2
1 files changed, 1 insertions, 1 deletions
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);
}