diff options
author | jp <jp@openoffice.org> | 2000-11-13 11:27:20 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2000-11-13 11:27:20 +0000 |
commit | d9065f44b1788156ef4c4e74d2f9fb052b6e3aee (patch) | |
tree | 4253e0c87f4ad19ac6fd7ba1c76e4276a80627ba /sw | |
parent | 6ade2bb240d28403793379e3d6dd020eaae55180 (diff) |
token definition changed
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/rtf/rtfatr.cxx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/sw/source/filter/rtf/rtfatr.cxx b/sw/source/filter/rtf/rtfatr.cxx index 738f859a0ee9..f8ba66bd6dac 100644 --- a/sw/source/filter/rtf/rtfatr.cxx +++ b/sw/source/filter/rtf/rtfatr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: rtfatr.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jp $ $Date: 2000-11-01 19:25:51 $ + * last change: $Author: jp $ $Date: 2000-11-13 12:27:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1367,7 +1367,11 @@ static Writer& OutRTF_SwCrossedOut( Writer& rWrt, const SfxPoolItem& rHt ) { rRTFWrt.bOutFmtAttr = TRUE; if( STRIKEOUT_DOUBLE == nStrike ) - rWrt.Strm() << sRTF_STRIKEDL; + { + rWrt.Strm() << sRTF_STRIKED; + if( !bTxtOut ) + rWrt.Strm() << '1'; + } else rWrt.Strm() << sRTF_STRIKE; } @@ -2965,11 +2969,14 @@ SwNodeFnTab aRTFNodeFnTab = { Source Code Control System - Header - $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/rtf/rtfatr.cxx,v 1.3 2000-11-01 19:25:51 jp Exp $ + $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/rtf/rtfatr.cxx,v 1.4 2000-11-13 12:27:20 jp Exp $ Source Code Control System - Update $Log: not supported by cvs2svn $ + Revision 1.3 2000/11/01 19:25:51 jp + export of mail graphics removed + Revision 1.2 2000/10/20 13:43:28 jp use correct INetURL-Decode enum |