diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-05-02 17:09:10 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-05-02 17:09:29 +0200 |
commit | d9051c4ce5c8302f7739a171b80cd5c9e6bf74b8 (patch) | |
tree | d6e74d8292153df441b12bdb1c037a20ded1395c /svl | |
parent | 5c22a03320f20ae9ac2c3c16025e7c5e3a7915d5 (diff) |
!= instead of < for comparison with end iterator
Change-Id: I16f3b768cdb3304d3f7a9b3a63a4262377c7c89b
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/svdde/ddesvr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx index 0d887a391d93..35a0ba7e0cc0 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 ) |