On Thu, Nov 09, 2000 at 06:27:05PM +0800, [EMAIL PROTECTED] wrote:
> 
> I believe it is in the file ie_exp_RTF_listenerWriteDoc.cpp,
> at line 201:
>                                 for(int i=0;i<mblen;++i) {
>                                         unsigned char c = mbbuf[i];
>                                         if ( c > 0x007f)
>                                                 m_pie->_rtf_nonascii_hex2(c);
>                                         else
>                                                 *pBuf++ = c;

Make the last line as:
{
        *pBuf++ = c;
        Flushbuffer();
}

Does the job for me. :)
Okey, lost some efficiency, maybe.





Reply via email to