[Libreoffice-commits] .: svl/source

Julien Nabet serval2412 at kemper.freedesktop.org
Wed May 2 08:10:10 PDT 2012


 svl/source/svdde/ddesvr.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d9051c4ce5c8302f7739a171b80cd5c9e6bf74b8
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Wed May 2 17:09:10 2012 +0200

    != instead of < for comparison with end iterator
    
    Change-Id: I16f3b768cdb3304d3f7a9b3a63a4262377c7c89b

diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx
index 0d887a3..35a0ba7 100644
--- a/svl/source/svdde/ddesvr.cxx
+++ b/svl/source/svdde/ddesvr.cxx
@@ -204,7 +204,7 @@ found:
     {
         pC->pTopic->_Disconnect( (long) hConv );
         for ( ConvList::iterator it = pService->pConv->begin();
-              it < pService->pConv->end();
+              it != pService->pConv->end();
               ++it
         ) {
             if ( *it == pC )


More information about the Libreoffice-commits mailing list