diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-01 20:56:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-01 20:56:45 +0000 |
commit | 3ad55b262d468121b3b55c819fadeed46df69224 (patch) | |
tree | ff7822a18c6c26a0a6ac4dd915818474d7de2cd5 /svtools | |
parent | ebfd82ca51acb38684c38949675550a6bf926c84 (diff) |
cppcheck: prefer prefix variant
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/toolbarmenuacc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/control/toolbarmenuacc.cxx b/svtools/source/control/toolbarmenuacc.cxx index 938d14bc854f..1650c99e7d52 100644 --- a/svtools/source/control/toolbarmenuacc.cxx +++ b/svtools/source/control/toolbarmenuacc.cxx @@ -327,7 +327,7 @@ void SAL_CALL ToolbarMenuAcc::addEventListener( const Reference< XAccessibleEven if( *aIter == rxListener ) bFound = true; else - aIter++; + ++aIter; } if (!bFound) @@ -355,7 +355,7 @@ void SAL_CALL ToolbarMenuAcc::removeEventListener( const Reference< XAccessibleE bFound = true; } else - aIter++; + ++aIter; } } } @@ -886,7 +886,7 @@ void SAL_CALL ToolbarMenuEntryAcc::removeEventListener( const Reference< XAccess bFound = true; } else - aIter++; + ++aIter; } } } |