summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-08-10 22:35:46 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-08-10 22:36:26 +0200
commit9b85b65fb5367b4a5d1c2bd1eed14e3bafe45405 (patch)
tree073e809d2fd9e9a946f602dcb7a5eb89449cd0d0 /forms
parentbe88027c327b5f09d134f235db100ec54afdc30d (diff)
Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ic8d149a78b2bc2bf352b7893202d0d0b6730746c
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 );