summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-06-13 22:18:20 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-06-13 22:18:37 +0200
commit6934312f617ccd86d0467e38129c2e5d861241b5 (patch)
tree3d58a65c74354b4a44c17b47fda32695b9bc4c73 /vcl/unx/gtk
parent8778882b8732454fac4a682e60a40ac2e3ad5c03 (diff)
cppcheck: fix all the others Prefer prefix ++/-- operators
Change-Id: I7956510a5faf1d659f88268941f8afce44e83560
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r--vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index 8518ab32dcb5..1dc547863e4a 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -831,7 +831,7 @@ sal_Bool GtkSalGraphics::drawNativeControl( ControlType nType,
RectangleVector aRectangles;
aClipRegion.GetRegionRectangles(aRectangles);
- for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); aRectIter++)
+ for(RectangleVector::const_iterator aRectIter(aRectangles.begin()); aRectIter != aRectangles.end(); ++aRectIter)
{
if(aRectIter->IsEmpty())
{