summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx')
-rw-r--r--editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx b/editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx
new file mode 100644
index 000000000000..8b588120c718
--- /dev/null
+++ b/editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx
@@ -0,0 +1,20 @@
+--- ../vcl/unx/source/gdi/salcvt.cxx.orig Mon Feb 24 17:46:21 2003
++++ ../vcl/unx/source/gdi/salcvt.cxx Tue Feb 25 17:21:50 2003
+@@ -261,6 +261,17 @@
+ || ( nChar >= 0x2500 && nChar <= 0x25a0 );
+ break;
+
++ case RTL_TEXTENCODING_KOI8_U:
++ bMatch = ( nChar >= 0x0020 && nChar <= 0x007e )
++ || ( nChar >= 0x00a0 && nChar <= 0x00b7 )
++ || ( nChar == 0x00f7 )
++ || ( nChar >= 0x0401 && nChar <= 0x0491 )
++ || ( nChar >= 0x2219 && nChar <= 0x221a )
++ || ( nChar >= 0x2248 && nChar <= 0x2265 )
++ || ( nChar >= 0x2320 && nChar <= 0x2321 )
++ || ( nChar >= 0x2500 && nChar <= 0x25a0 );
++ break;
++
+ case RTL_TEXTENCODING_UNICODE:
+ bMatch = True;
+ break;