diff options
author | Tino Rachui <tra@openoffice.org> | 2001-05-15 12:37:45 +0000 |
---|---|---|
committer | Tino Rachui <tra@openoffice.org> | 2001-05-15 12:37:45 +0000 |
commit | 19a8e9d2a3c1e67ec0e2b6286375f883cec94e2a (patch) | |
tree | 87a81ac3fd2f091be4ae6a7817ac8f2e6fa6cc1e | |
parent | 6f83bda7204ad040b03637c96a39b0e1766eedf6 (diff) |
*** empty log message ***
-rw-r--r-- | dtrans/source/win32/dtobj/FmtFilter.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dtrans/source/win32/dtobj/FmtFilter.cxx b/dtrans/source/win32/dtobj/FmtFilter.cxx index de2f195f6ebe..b4f408193ec2 100644 --- a/dtrans/source/win32/dtobj/FmtFilter.cxx +++ b/dtrans/source/win32/dtobj/FmtFilter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: FmtFilter.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: tra $ $Date: 2001-03-20 09:26:01 $ + * last change: $Author: tra $ $Date: 2001-05-15 13:37:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -297,10 +297,10 @@ Sequence< sal_Int8 > SAL_CALL TextHtmlToHTMLFormat( Sequence< sal_Int8 >& aTextH reinterpret_cast< const sal_Char* >( aTextHtml.getConstArray( ) ), aTextHtml.getLength( ) ); - sal_Int32 nStartHtml = textHtml.search( startHtmlTag ); - sal_Int32 nEndHtml = textHtml.search( endHtmlTag ); - sal_Int32 nStartFrgmt = textHtml.search( startBodyTag ); - sal_Int32 nEndFrgmt = textHtml.search( endBodyTag ); + sal_Int32 nStartHtml = textHtml.indexOf( startHtmlTag ); + sal_Int32 nEndHtml = textHtml.indexOf( endHtmlTag ); + sal_Int32 nStartFrgmt = textHtml.indexOf( startBodyTag ); + sal_Int32 nEndFrgmt = textHtml.indexOf( endBodyTag ); Sequence< sal_Int8 > aHTMLFmtSequence; |