On Thu, Nov 09, 2000 at 08:49:57AM +0000, [EMAIL PROTECTED] wrote:
>         }
> 
> So,I know after "pExpRtf->copyToBuffer(pDocRange,&bufRTF)",string's
> sequence is wrong.But I am still not know where AW change the
> sequence.
> May someone give me a detail reference to trace the string which
> is selected ,copied and pasted.Then I can put debug instructions
> in source code to make it clear where AW change the sequence.
> 

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;

Maybe also more at other places.




Reply via email to