diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:15:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:15:19 +0000 |
commit | 931a049c61384039339243f92cb808deeeb83396 (patch) | |
tree | 36d7ff96f430ca8695c27eb6f8b0302e0ea5a960 /sd/source | |
parent | 8dd1eb14099d996cbe4c38af97032d74d8c3196f (diff) |
cppunit: prefer prefix variant
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/toolpanel/ScrollPanel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/toolpanel/ScrollPanel.cxx b/sd/source/ui/toolpanel/ScrollPanel.cxx index 3f7ac0181..de80324c8 100644 --- a/sd/source/ui/toolpanel/ScrollPanel.cxx +++ b/sd/source/ui/toolpanel/ScrollPanel.cxx @@ -243,7 +243,7 @@ void ScrollPanel::Paint (const Rectangle& rRect) Point (mnHorizontalBorder,0), Size(mnChildrenWidth,0)); StripeList::const_iterator iStripe; - for (iStripe=maStripeList.begin(); iStripe!=maStripeList.end(); iStripe++) + for (iStripe=maStripeList.begin(); iStripe!=maStripeList.end(); ++iStripe) { aStripeArea.Top() = iStripe->first; aStripeArea.Bottom() = iStripe->second; |