diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-05-24 11:30:49 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-05-24 11:32:43 +0200 |
commit | 2ed32f7afa712992486ad516407d30bce85b3530 (patch) | |
tree | 30b9670ca8ec627231054b7f9a865d4e5f89cda4 /vcl | |
parent | fed8631d31c4598466ef0d09f509bfabd5ce9dd7 (diff) |
cppcheck: Prefer prefix ++/-- operators
Change-Id: I290ccba1487e59ea6f86bfb0382671ca4ed50831
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/android/androidinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 21d9007604ba..4f716e022378 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -110,7 +110,7 @@ void AndroidSalInstance::RedrawWindows(ANativeWindow_Buffer *pBuffer) { int i = 0; std::list< SalFrame* >::const_iterator it; - for ( it = getFrames().begin(); it != getFrames().end(); i++, it++ ) + for ( it = getFrames().begin(); it != getFrames().end(); i++, ++it ) { SvpSalFrame *pFrame = static_cast<SvpSalFrame *>(*it); |