diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-05-02 21:57:04 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-05-02 21:58:13 +0200 |
commit | 46c01657d505a021673449ff0f874bc080d23ba6 (patch) | |
tree | 0ff4980e82cb93a409710366d154f7054ed53de8 /toolkit | |
parent | 0ae9489290a6696765634be073a4b88f4c47940a (diff) |
!= instead of < for comparison with end iterator
Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxgraphics.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxgraphics.cxx b/toolkit/source/awt/vclxgraphics.cxx index f954b2a2253d..8923ea34a706 100644 --- a/toolkit/source/awt/vclxgraphics.cxx +++ b/toolkit/source/awt/vclxgraphics.cxx @@ -74,7 +74,7 @@ VCLXGraphics::~VCLXGraphics() VCLXGraphicsList_impl* pLst = mpOutputDevice ? mpOutputDevice->GetUnoGraphicsList() : NULL; if ( pLst ) { - for( VCLXGraphicsList_impl::iterator it = pLst->begin(); it < pLst->end(); ++it ) + for( VCLXGraphicsList_impl::iterator it = pLst->begin(); it != pLst->end(); ++it ) { if( *it == this ) { pLst->erase( it ); |