diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:25:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:25:24 +0000 |
commit | 5d0c963e0f9ad17b482f9a4673cf7fa222c5fd20 (patch) | |
tree | 25e198574c20e3ece92929e31a3a0ec25537faad /toolkit | |
parent | 285e5dfd54a519893fbf80cba91ac72f58936758 (diff) |
cppcheck: prefer prefix variant
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/layout/core/import.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/layout/core/import.cxx b/toolkit/source/layout/core/import.cxx index 94291b54a18f..b90cc45bda53 100644 --- a/toolkit/source/layout/core/import.cxx +++ b/toolkit/source/layout/core/import.cxx @@ -288,7 +288,7 @@ void RadioGroups::RadioGroup::handleSelected () throw (uno::RuntimeException) { for ( RadioButtonsList::iterator it = mxRadios.begin(); - it != mxRadios.end(); it++ ) + it != mxRadios.end(); ++it ) if ( *it != mxSelectedRadio && (*it)->getState() ) { mxSelectedRadio->setState( false ); |