diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-04-08 01:01:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-04-08 01:01:31 +0200 |
commit | a16060116346533923c607bd406d3fea511b41ec (patch) | |
tree | b7947f09294205e899ff7dfc0e7ab2940abe45ef /xmlsecurity | |
parent | b63afcd27df0eb7123782b7d80bc0963df9fedb9 (diff) |
Fix Prefer prefix ++/-- operators
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/helper/documentsignaturehelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index 7523bf1f078a..8b10f0307b85 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -374,7 +374,7 @@ bool DocumentSignatureHelper::checkIfAllFilesAreSigned( //find the file in the element list typedef ::std::vector< ::rtl::OUString >::const_iterator CIT; - for (CIT aIter = sElementList.begin(); aIter < sElementList.end(); aIter++) + for (CIT aIter = sElementList.begin(); aIter != sElementList.end(); ++aIter) { ::rtl::OUString sElementListURI = *aIter; if (alg == OOo2Document) |