summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-05-05 22:43:38 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-05-05 22:43:38 +0200
commit34b470a610ce790f67ac06cc06270f52270c74d1 (patch)
tree60e72ac2242e6bc4d793f5893589af3f9a786be1
parent694cfeda4fede108141fffa1a8a02e92fb133b7c (diff)
Fix cppcheck warning (Prefer prefix ++/-- operators for non-primitive types)
-rw-r--r--reportdesign/source/ui/report/ReportControllerObserver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/report/ReportControllerObserver.cxx b/reportdesign/source/ui/report/ReportControllerObserver.cxx
index 76fb46ab5..bd55192f6 100644
--- a/reportdesign/source/ui/report/ReportControllerObserver.cxx
+++ b/reportdesign/source/ui/report/ReportControllerObserver.cxx
@@ -123,7 +123,7 @@ public:
// maybe they need a change in format, color, etc
::std::vector< uno::Reference< container::XChild > >::const_iterator aIter = m_pImpl->m_aSections.begin();
::std::vector< uno::Reference< container::XChild > >::const_iterator aEnd = m_pImpl->m_aSections.end();
- for (;aIter != aEnd; aIter++)
+ for (;aIter != aEnd; ++aIter)
{
const uno::Reference<container::XChild> xChild (*aIter);
if (xChild.is())