diff options
author | Karl Hong <khong@openoffice.org> | 2002-08-26 20:25:10 +0000 |
---|---|---|
committer | Karl Hong <khong@openoffice.org> | 2002-08-26 20:25:10 +0000 |
commit | c31759deda88576388e41b92abbf6307219d1c98 (patch) | |
tree | dab0b489a318c34d2cb680f91fc34a5ea381bcfd | |
parent | 935692dd88533bc69ca1e1a77eb03fb27d5d0d89 (diff) |
#102636# fix a problem in isBeginOfWord()
-rw-r--r-- | i18npool/source/breakiterator/breakiteratorImpl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/i18npool/source/breakiterator/breakiteratorImpl.cxx b/i18npool/source/breakiterator/breakiteratorImpl.cxx index 82544af144b1..ed87c8e2ffbe 100644 --- a/i18npool/source/breakiterator/breakiteratorImpl.cxx +++ b/i18npool/source/breakiterator/breakiteratorImpl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: breakiteratorImpl.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: khong $ $Date: 2002-04-16 00:05:32 $ + * last change: $Author: khong $ $Date: 2002-08-26 21:25:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -177,7 +177,7 @@ sal_Bool SAL_CALL BreakIteratorImpl::isBeginWord( const OUString& Text, sal_Int3 { if (unicode::isWhiteSpace(Text[nPos])) return false; - result = getWordBoundary(Text, nPos, rLocale, rWordType, false); + result = getWordBoundary(Text, nPos, rLocale, rWordType, true); return result.startPos == nPos; } |