diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:31:59 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:31:59 +0000 |
commit | 31a7c2d6fad513c630e70770b09a72f8967f22fe (patch) | |
tree | 2151bf75924d6794be7d6f2dda59ef9e5879e572 /i18npool | |
parent | 49d8037cb7ec7109e78cd523fdacfd6c119e8221 (diff) |
INTEGRATION: CWS warningfixes02 (1.11.2); FILE MERGED
2006/06/30 11:57:38 sb 1.11.2.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/textconversion/textconversion_ko.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/i18npool/source/textconversion/textconversion_ko.cxx b/i18npool/source/textconversion/textconversion_ko.cxx index f2ec9eda8a67..159d068bdaa8 100644 --- a/i18npool/source/textconversion/textconversion_ko.cxx +++ b/i18npool/source/textconversion/textconversion_ko.cxx @@ -4,9 +4,9 @@ * * $RCSfile: textconversion_ko.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: hr $ $Date: 2006-06-20 04:49:07 $ + * last change: $Author: kz $ $Date: 2006-07-19 16:31:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -219,7 +219,7 @@ TextConversion_ko::getConversions( const OUString& aText, sal_Int32 nStartPos, s // FROM_LEFT: Hangul -> Hanja // FROM_RIGHT: Hanja -> Hangul ConversionDirection eDirection = toHanja ? ConversionDirection_FROM_LEFT : ConversionDirection_FROM_RIGHT; - sal_Int32 maxLength = maxLength = toHanja ? maxLeftLength : maxRightLength; + sal_Int32 maxLength = toHanja ? maxLeftLength : maxRightLength; if (maxLength == 0) maxLength = 1; // search for a max length of convertible text |