summaryrefslogtreecommitdiff
path: root/transex3
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-16 17:13:26 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-16 17:13:26 +0000
commite725ed2b1c0dac167f36f8cea010e3861cab665d (patch)
tree7827d1186c583566947f656b6d8930f565a40293 /transex3
parent527611dac285fddddab4c417cceb12bd293a7710 (diff)
INTEGRATION: CWS dr33 (1.1.1.1.224); FILE MERGED
2005/02/09 12:01:21 dr 1.1.1.1.224.1: #i36782# remove non-ASCII chars from sources
Diffstat (limited to 'transex3')
-rw-r--r--transex3/source/wtratree.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/transex3/source/wtratree.cxx b/transex3/source/wtratree.cxx
index 62bcd3bffc0a..d5f0108822d1 100644
--- a/transex3/source/wtratree.cxx
+++ b/transex3/source/wtratree.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: wtratree.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:03:26 $
+ * last change: $Author: vg $ $Date: 2005-02-16 18:13:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -105,8 +105,8 @@ WordTransTree::WordTransTree(CharSet i_nWorkingCharSet)
dpParsingTreeTop(0),
pUnknownAlpha(0),
// cChar2Branch
- c_AE(u_char('')), c_OE(u_char('')), c_UE(u_char('')),
- c_ae(u_char('')), c_oe(u_char('')), c_ue(u_char('')),
+ c_AE(u_char('\xC4')), c_OE(u_char('\xD6')), c_UE(u_char('\xDC')),
+ c_ae(u_char('\xE4')), c_oe(u_char('\xF6')), c_ue(u_char('\xFC')),
pInputCurTokenStart(0),
pInputPosition(0),
pOutputPosition(0),
@@ -149,7 +149,7 @@ WordTransTree::WordTransTree(CharSet i_nWorkingCharSet)
void
WordTransTree::SetCharSet(CharSet i_nWorkingCharSet)
{
- ByteString sConvert("");
+ ByteString sConvert("\xC4\xD6\xDC\xE4\xF6\xFC\xDF");
const u_char * pConvert = (const u_char * ) ( sConvert.Convert(RTL_TEXTENCODING_MS_1252, i_nWorkingCharSet).GetBuffer() );
INT16 i = 0;