diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-07-20 08:34:42 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-07-20 08:35:11 +0200 |
commit | b37bcdded66ae82c5677fe60d8347b87281f3fa2 (patch) | |
tree | 7fa3845c7807a8b17a2d3338e695bd977fe7a491 /sc/source/ui/collab/sendfunc.cxx | |
parent | 61c39eae570d6d6040b65bfe93127b30e6080cc8 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: Iba122812b0485f6e8097e1767b64d7ed67f9684e
Diffstat (limited to 'sc/source/ui/collab/sendfunc.cxx')
-rw-r--r-- | sc/source/ui/collab/sendfunc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/collab/sendfunc.cxx b/sc/source/ui/collab/sendfunc.cxx index c16364bf5385..d22e4ba3b143 100644 --- a/sc/source/ui/collab/sendfunc.cxx +++ b/sc/source/ui/collab/sendfunc.cxx @@ -198,7 +198,7 @@ class ScDocFuncDemo : public ScDocFuncRecv // FIXME: Lifecycle nightmare std::vector< boost::shared_ptr<ScDocFuncRecv> > aCopy( maClients ); for (std::vector< boost::shared_ptr<ScDocFuncRecv> >::iterator i - = aCopy.begin(); i != aCopy.end(); i++) + = aCopy.begin(); i != aCopy.end(); ++i) (*i)->RecvMessage(rString); } @@ -207,7 +207,7 @@ class ScDocFuncDemo : public ScDocFuncRecv // FIXME: Lifecycle nightmare std::vector< boost::shared_ptr<ScDocFuncRecv> > aCopy( maClients ); for (std::vector< boost::shared_ptr<ScDocFuncRecv> >::iterator i - = aCopy.begin(); i != aCopy.end(); i++) + = aCopy.begin(); i != aCopy.end(); ++i) (*i)->fileReceived( rStr ); } }; |