Changeset 9407 for trunk/src/riched32/text-writer.c
- Timestamp:
- Nov 13, 2002, 1:17:19 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/riched32/text-writer.c
r3922 r9407 1 /* $Id: text-writer.c,v 1.2 2000-08-02 14:58:40 bird Exp $ */2 1 /* 3 2 * text-writer -- RTF-to-text translation writer code. … … 38 37 */ 39 38 40 # include <stdio.h> 41 42 # include "rtf.h" 43 # include "rtf2text.h" 44 # include "charlist.h" 39 #include <stdio.h> 40 41 #include "rtf.h" 42 #include "rtf2text.h" 43 #include "charlist.h" 44 #include "wine/debug.h" 45 46 WINE_DEFAULT_DEBUG_CHANNEL(richedit); 45 47 46 48 static void TextClass (); … … 63 65 /* we require one more for the '\0' */ 64 66 67 TRACE("\n"); 65 68 66 69 if(nBufferSize < charlist.nCount + 1) { … … 121 124 char buf[rtfBufSiz]; 122 125 123 if (rtfMinor != rtfSC_nothing) 126 TRACE("\n"); 127 128 if (rtfFormat == SF_TEXT) 129 PutLitChar (rtfMajor); 130 else if (rtfMinor != rtfSC_nothing) 124 131 PutStdChar (rtfMinor); 125 132 else … … 137 144 ControlClass () 138 145 { 146 TRACE("\n"); 139 147 switch (rtfMajor) 140 148 { … … 158 166 Destination () 159 167 { 168 169 TRACE("\n"); 170 160 171 switch (rtfMinor) 161 172 { … … 187 198 void SpecialChar () 188 199 { 200 201 TRACE("\n"); 202 189 203 switch (rtfMinor) 190 204 { … … 251 265 RTFPanic ("Unknown character code, logic error\n"); 252 266 */ 267 TRACE("\n"); 268 253 269 oStr = outMap[stdCode]; 254 270 if (oStr == (char *) NULL) /* no output sequence in map */
Note:
See TracChangeset
for help on using the changeset viewer.