summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorKevin Hunter <hunteke@earlham.edu>2011-02-11 15:20:51 -0500
committerCaolán McNamara <caolanm@redhat.com>2011-02-11 20:51:24 +0000
commit3a87b5c8c3a1b0374f6761d6ccdc1efb1d05e831 (patch)
treea711c09f579ec574f6aa3e50dbc8e3dd62d27087 /fpicker
parent5d2036dcf1fbfa0e897f45ec91cc7088e6e2793b (diff)
cppcheck: post- to pre- *crement change
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/aqua/ControlHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/ControlHelper.cxx b/fpicker/source/aqua/ControlHelper.cxx
index 67725c19ec..c7ac6fdb7d 100644
--- a/fpicker/source/aqua/ControlHelper.cxx
+++ b/fpicker/source/aqua/ControlHelper.cxx
@@ -86,7 +86,7 @@ ControlHelper::~ControlHelper()
[m_pUserPane release];
}
- for(std::list<NSControl *>::iterator control = m_aActiveControls.begin(); control != m_aActiveControls.end(); control++) {
+ for(std::list<NSControl *>::iterator control = m_aActiveControls.begin(); control != m_aActiveControls.end(); ++control) {
NSControl* pControl = (*control);
NSString* sLabelName = m_aMapListLabels[pControl];
if (sLabelName != nil) {