diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:13:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:13:20 +0000 |
commit | 6dba180d82dcdedd7c5a423f65afdd41aa0b579f (patch) | |
tree | 1ffdba233837c3845f1f9f0649ce7f0fdc60c016 /toolkit | |
parent | cf30ffaa88d00a08e2ca8f51bca975717b561430 (diff) |
cppunit: prefer prefix variant
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index 9de591da7a3e..dbe0296c56ce 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -1389,7 +1389,7 @@ void VCLXWindow::ImplGetPropertyIds( std::list< sal_uInt16 > &rIds, bool bWithDe // lovely hack from: // void UnoControlModel::ImplRegisterProperty( sal_uInt16 nPropId ) std::list< sal_uInt16 >::const_iterator iter; - for( iter = rIds.begin(); iter != rIds.end(); iter++) { + for( iter = rIds.begin(); iter != rIds.end(); ++iter) { if( *iter == BASEPROPERTY_FONTDESCRIPTOR ) { // some properties are not included in the FontDescriptor, but everytime |