summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2003-03-05 00:47:02 +0000
committerMartin Blapp <mbr@FreeBSD.org>2003-03-05 00:47:02 +0000
commitdbe54846be4ade9ef13bd000a642a1cf257a7ccf (patch)
treec52a9d451e4df7bd04dfdb31a5a49a1872d8bb37 /editors/openoffice-1.0/files/patch-vcl+unx+source+gdi+salcvt.cxx
parentUpdate to 0.7.3 (diff)
Add missing patches for PR 48789
Submitted by: Alexandr Kovalenko <never@nevermind.kiev.ua>
Notes
Notes: svn path=/head/; revision=76890
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;