diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-04-05 21:15:13 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-04-05 21:17:09 +0200 |
commit | 7d2508572a0389bcb1c803911024296f411af653 (patch) | |
tree | cfa0f95bf150c77b763908e77fc422ce6efc2a28 /framework/source/uielement/toolbarsmenucontroller.cxx | |
parent | 7a56eef989b828c495d34c34de99d1b863f223e2 (diff) |
Fix Prefer prefix ++/-- operators
Includes too replacement < by != for comparison between current and end iterators
Diffstat (limited to 'framework/source/uielement/toolbarsmenucontroller.cxx')
-rw-r--r-- | framework/source/uielement/toolbarsmenucontroller.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/uielement/toolbarsmenucontroller.cxx b/framework/source/uielement/toolbarsmenucontroller.cxx index 23012014d4c7..1bffc3966f17 100644 --- a/framework/source/uielement/toolbarsmenucontroller.cxx +++ b/framework/source/uielement/toolbarsmenucontroller.cxx @@ -451,7 +451,7 @@ void ToolbarsMenuController::fillPopupMenu( Reference< css::awt::XPopupMenu >& r aTbEntry.pCollatorWrapper = m_aIntlWrapper.getCaseCollator(); aSortedTbs.push_back( aTbEntry ); } - pIter++; + ++pIter; } // sort toolbars |