View | Details | Raw Unified | Return to issue 15456
Collapse All | Expand All

(-)svtools/source/svhtml/htmlout.cxx (+43 lines)
Lines 99-104 Link Here
99
											 rtl_TextEncoding eDestEnc )
99
											 rtl_TextEncoding eDestEnc )
100
{
100
{
101
	const sal_Char* pStr = 0;
101
	const sal_Char* pStr = 0;
102
103
    if( eDestEnc == RTL_TEXTENCODING_ISO_8859_2 || eDestEnc == RTL_TEXTENCODING_MS_1250 )
104
    {
105
        // Don't handle the following characers for Eastern European (ISO-8859-2).
106
        switch ( c )
107
        {
108
        case 164: // curren
109
        case 184: // ccedil
110
        case 193: // Aacute
111
        case 194: // Acirc
112
        case 196: // Auml 
113
        case 199: // Ccedil
114
        case 201: // Eacute
115
        case 203: // Euml 
116
        case 205: // Iacute
117
        case 206: // Icirc
118
        case 211: // Oacute
119
        case 212: // Ocirc
120
        case 214: // Ouml 
121
        case 215: // times
122
        case 218: // Uacute
123
        case 220: // Uuml 
124
        case 221: // Yacute
125
        case 225: // aacute
126
        case 226: // acirc
127
        case 228: // auml 
128
        case 233: // eacute
129
        case 235: // euml 
130
        case 237: // iacute
131
        case 238: // icirc
132
        case 243: // oacute
133
        case 244: // ocirc
134
        case 246: // ouml 
135
        case 247: // divide
136
        case 250: // uacute
137
        case 252: // uuml
138
        case 253: // yacute
139
        case 352: // Scaron
140
        case 353: // scaron
141
            return pStr;
142
        }
143
    }
144
102
	switch( c )
145
	switch( c )
103
	{
146
	{
104
//	    case '\x0a':   return HTMLOutFuncs::Out_Tag( rStream, sHTML_linebreak );
147
//	    case '\x0a':   return HTMLOutFuncs::Out_Tag( rStream, sHTML_linebreak );

Return to issue 15456