summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 13:38:17 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 13:38:17 +0000
commitd6b8dabc3dc4811e1152d411a8428ccb334d16ab (patch)
tree923a392a3a1a5bcbd2671c6668f60fa17c8368b3 /i18npool
parent9ea4c16a699ac7cf5e255a19653651ac993f022b (diff)
INTEGRATION: CWS i18n13 (1.7.162); FILE MERGED
2004/06/11 19:23:04 khong 1.7.162.1: #112772# Japanese word breakiterator is not correct
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/breakiterator/breakiterator_ctl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/source/breakiterator/breakiterator_ctl.cxx b/i18npool/source/breakiterator/breakiterator_ctl.cxx
index fdc1ced6cf16..b9a671f76465 100644
--- a/i18npool/source/breakiterator/breakiterator_ctl.cxx
+++ b/i18npool/source/breakiterator/breakiterator_ctl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: breakiterator_ctl.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: khong $ $Date: 2002-05-20 23:17:02 $
+ * last change: $Author: kz $ $Date: 2004-07-30 14:38:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -161,11 +161,11 @@ LineBreakResults SAL_CALL BreakIterator_CTL::getLineBreak(
const LineBreakHyphenationOptions& hOptions,
const LineBreakUserOptions& bOptions ) throw(RuntimeException)
{
- LineBreakResults result = BreakIterator_Unicode::getLineBreak(Text, nStartPos,
+ LineBreakResults lbr = BreakIterator_Unicode::getLineBreak(Text, nStartPos,
rLocale, nMinBreakPos, hOptions, bOptions );
makeIndex(Text, nStartPos);
- result.breakIndex = previousCellIndex[ result.breakIndex ];
- return result;
+ lbr.breakIndex = previousCellIndex[ lbr.breakIndex ];
+ return lbr;
}
} } } }