[Libreoffice-commits] .: filter/source
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Feb 11 12:57:33 PST 2011
filter/source/xsltfilter/LibXSLTTransformer.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 351272b7659bdd21a7ffb70de863b2bf38045d97
Author: Kevin Hunter <hunteke at earlham.edu>
Date: Fri Feb 11 15:05:23 2011 -0500
cppcheck: post- to pre- *crement change
diff --git a/filter/source/xsltfilter/LibXSLTTransformer.cxx b/filter/source/xsltfilter/LibXSLTTransformer.cxx
index adf833b..190c20e 100644
--- a/filter/source/xsltfilter/LibXSLTTransformer.cxx
+++ b/filter/source/xsltfilter/LibXSLTTransformer.cxx
@@ -321,7 +321,7 @@ namespace XSLT
{
ListenerList::iterator it;
ListenerList* l = &m_listeners;
- for (it = l->begin(); it != l->end(); it++)
+ for (it = l->begin(); it != l->end(); ++it)
{
Reference<XStreamListener> xl = *it;
xl.get()->started();
@@ -336,7 +336,7 @@ namespace XSLT
ListenerList* l = &m_listeners;
Any arg;
arg <<= Exception(msg, *this);
- for (ListenerList::iterator it = l->begin(); it != l->end(); it++)
+ for (ListenerList::iterator it = l->begin(); it != l->end(); ++it)
{
Reference<XStreamListener> xl = *it;
if (xl.is())
@@ -350,7 +350,7 @@ namespace XSLT
LibXSLTTransformer::done()
{
ListenerList* l = &m_listeners;
- for (ListenerList::iterator it = l->begin(); it != l->end(); it++)
+ for (ListenerList::iterator it = l->begin(); it != l->end(); ++it)
{
Reference<XStreamListener> xl = *it;
if (xl.is())
More information about the Libreoffice-commits
mailing list