diff options
author | Karl Hong <khong@openoffice.org> | 2002-10-11 17:52:28 +0000 |
---|---|---|
committer | Karl Hong <khong@openoffice.org> | 2002-10-11 17:52:28 +0000 |
commit | 11f24a002ef2057f0bccab77675ac3f54fb8e39f (patch) | |
tree | 6d5340f27b319cc1dd4bb3bf1f3672a669fe9ee1 /i18npool | |
parent | fbfe0357fd7f565a6da306972cea621bf4ace7ea (diff) |
#104162# fix Korean breakiterator problem
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/breakiterator/breakiterator_cjk.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/source/breakiterator/breakiterator_cjk.cxx b/i18npool/source/breakiterator/breakiterator_cjk.cxx index 68a826f9a20f..05e708513d86 100644 --- a/i18npool/source/breakiterator/breakiterator_cjk.cxx +++ b/i18npool/source/breakiterator/breakiterator_cjk.cxx @@ -2,9 +2,9 @@ * * $RCSfile: breakiterator_cjk.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: khong $ $Date: 2002-09-06 07:34:56 $ + * last change: $Author: khong $ $Date: 2002-10-11 18:52:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -85,7 +85,7 @@ BreakIterator_CJK::previousWord(const OUString& text, sal_Int32 anyPos, if (dict) return dict->previousWord(text.getStr(), anyPos, text.getLength(), wordType); else - BreakIterator_Unicode::previousWord(text, anyPos, nLocale, wordType); + return BreakIterator_Unicode::previousWord(text, anyPos, nLocale, wordType); } Boundary SAL_CALL @@ -95,7 +95,7 @@ BreakIterator_CJK::nextWord(const OUString& text, sal_Int32 anyPos, if (dict) return dict->nextWord(text.getStr(), anyPos, text.getLength(), wordType); else - BreakIterator_Unicode::nextWord(text, anyPos, nLocale, wordType); + return BreakIterator_Unicode::nextWord(text, anyPos, nLocale, wordType); } Boundary SAL_CALL @@ -106,7 +106,7 @@ BreakIterator_CJK::getWordBoundary( const OUString& text, sal_Int32 anyPos, if (dict) return dict->getWordBoundary(text.getStr(), anyPos, text.getLength(), wordType, bDirection); else - BreakIterator_Unicode::getWordBoundary(text, anyPos, nLocale, wordType, bDirection); + return BreakIterator_Unicode::getWordBoundary(text, anyPos, nLocale, wordType, bDirection); } LineBreakResults SAL_CALL BreakIterator_CJK::getLineBreak( |