summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2003-04-19 01:47:29 +0000
committerMaho Nakata <maho@FreeBSD.org>2003-04-19 01:47:29 +0000
commit1555c01115fa775c3a446ccdd3361659f93c008e (patch)
tree2db1d395dd54e8e8442791c1db0c663158f94669 /editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx
parentSecurity update to 0.23.9. (diff)
1. Correct include path for instsetoo/util/openoffice.lst
Without it, licensing terms are not copied and installation fails for some localizd build. (affects patch-instsetoo+util+openoffice.lst and Makefile) 2. Added CJK Word 95/6.0/RTF import feature (Other patches) 3. Bump port revision By Takashi Ono <t_ono@hkfreak.net>
Notes
Notes: svn path=/head/; revision=79252
Diffstat (limited to 'editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx')
-rw-r--r--editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx b/editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx
new file mode 100644
index 000000000000..5ebcaf8e27b1
--- /dev/null
+++ b/editors/openoffice.org-3-RC/files/patch-svx+source+svrtf+rtfitem.cxx
@@ -0,0 +1,24 @@
+--- ../svx/source/svrtf/rtfitem.cxx.orig Thu Apr 17 22:50:50 2003
++++ ../svx/source/svrtf/rtfitem.cxx Thu Apr 17 23:40:15 2003
+@@ -285,11 +285,20 @@
+ }
+ else
+ {
+- if( LOW_CHARTYPE == eType || HIGH_CHARTYPE == eType )
++// if( LOW_CHARTYPE == eType || HIGH_CHARTYPE == eType ) //Takashi Ono for CJK
++ if( LOW_CHARTYPE == eType )
+ {
+ if( *pNormal )
+ {
+ rItem.SetWhich( *pNormal );
++ rSet.Put( rItem );
++ }
++ }
++ else if( HIGH_CHARTYPE == eType )
++ {
++ if( *pCTL )
++ {
++ rItem.SetWhich( *pCTL );
+ rSet.Put( rItem );
+ }
+ }