diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-07-12 15:07:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-07-12 15:07:40 +0100 |
commit | 058116026965ad31164fe60d5cd8a6d5fbbe8f65 (patch) | |
tree | be161f09375d6bef50f38ab843e1a04f4374f5e0 /editeng | |
parent | e647cc9d895005c5bed2fec98c73ca28ccd925ae (diff) |
make this a const_iterator for windows buildbot
Change-Id: I6e242de572595fdf39553d76932bc0e953cd3a34
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 31a1cdafbd85..68473fd5c694 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1658,7 +1658,7 @@ static const SvxAutocorrWord* lcl_SearchWordsInList( { const SvxAutocorrWordList* pAutoCorrWordList = pList->GetAutocorrWordList(); TransliterationWrapper& rCmp = GetIgnoreTranslWrapper(); - for( SvxAutocorrWordList::iterator it = pAutoCorrWordList->begin(); it != pAutoCorrWordList->end(); ++it ) + for( SvxAutocorrWordList::const_iterator it = pAutoCorrWordList->begin(); it != pAutoCorrWordList->end(); ++it ) { const SvxAutocorrWord* pFnd = *it; const String& rChk = pFnd->GetShort(); |