sfx2/source/appl/lnkbase2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 602445c1aae34c1770b627c60238f4f8ba8515ac Author: Julien Nabet <[email protected]> Date: Sun Jul 15 15:24:09 2012 +0200 Prefer prefix ++/-- operators for non-primitive types Change-Id: I6cfaf9f4623c67fcf9383426f04b32e095acbf42 diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx index d22c4fd..8bc6704 100644 --- a/sfx2/source/appl/lnkbase2.cxx +++ b/sfx2/source/appl/lnkbase2.cxx @@ -620,7 +620,7 @@ static DdeTopic* FindTopic( const String & rLinkName, sal_uInt16* pItemStt ) for( int i = 0; i < 2; ++i ) { for( std::vector<DdeTopic*>::iterator iterTopic = rTopics.begin(); - iterTopic != rTopics.end(); iterTopic++ ) + iterTopic != rTopics.end(); ++iterTopic ) if( (*iterTopic)->GetName() == sTopic ) return *iterTopic; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
