diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-08-27 07:31:11 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-08-27 07:31:11 +0200 |
commit | ed5dc65079c27d6db8f9cb4b0bf4a907ecf041af (patch) | |
tree | faacaeff362440d368796de36c47382517532498 /cui | |
parent | 6ce6d0a41817c3eb9ec857c478c31594f0673735 (diff) |
Bin intermediate iterator
Change-Id: I377e226820f5e4626d4341b216ff75f755dded5b
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/hangulhanjadlg.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index 28bcd89b1dcf..39bcbf72abdf 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -1086,9 +1086,8 @@ namespace svx xNameCont->removeByName( xDic->getName() ); //adapt local caches: - HHDictList::iterator aIter(m_aDictList.begin()); - m_aDictList.erase(aIter+nSelPos ); - m_aDictsLB.RemoveEntry( nSelPos ); + m_aDictList.erase(m_aDictList.begin()+nSelPos ); + m_aDictsLB.RemoveEntry(nSelPos); } catch( const ElementExistException& ) { |