summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/xforms/namedcollection.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/xforms/namedcollection.hxx b/forms/source/xforms/namedcollection.hxx
index d34cb924ba76..5f9c808ac16d 100644
--- a/forms/source/xforms/namedcollection.hxx
+++ b/forms/source/xforms/namedcollection.hxx
@@ -57,7 +57,7 @@ public:
std::vector<rtl::OUString> aNames;
for( typename std::vector<T>::const_iterator aIter = maItems.begin();
aIter != maItems.end();
- aIter++ )
+ ++aIter )
{
com::sun::star::uno::Reference<com::sun::star::container::XNamed>
xNamed( *aIter, com::sun::star::uno::UNO_QUERY );
@@ -78,7 +78,7 @@ protected:
{
for( typename std::vector<T>::const_iterator aIter = maItems.begin();
aIter != maItems.end();
- aIter++ )
+ ++aIter )
{
com::sun::star::uno::Reference<com::sun::star::container::XNamed>
xNamed( *aIter, com::sun::star::uno::UNO_QUERY );