summaryrefslogtreecommitdiffstats
path: root/dtrans/source/win32/dtobj
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2001-05-15 11:39:12 +0000
committerTino Rachui <tra@openoffice.org>2001-05-15 11:39:12 +0000
commit72b4a6bc55d092eaca8f2cd2a0c94762cfd04f66 (patch)
tree541b45de1c589ac2a7d8c6a2e694c82fb9fd3063 /dtrans/source/win32/dtobj
parent#86489# Lock solar mutex before calling DestroyOutputDevice... (diff)
downloadcore-72b4a6bc55d092eaca8f2cd2a0c94762cfd04f66.tar.gz
core-72b4a6bc55d092eaca8f2cd2a0c94762cfd04f66.zip
*** empty log message ***
Diffstat (limited to 'dtrans/source/win32/dtobj')
-rw-r--r--dtrans/source/win32/dtobj/DOTransferable.cxx8
-rw-r--r--dtrans/source/win32/dtobj/DataFmtTransl.cxx6
2 files changed, 7 insertions, 7 deletions
diff --git a/dtrans/source/win32/dtobj/DOTransferable.cxx b/dtrans/source/win32/dtobj/DOTransferable.cxx
index fbc01e4aef67..04713e415fa3 100644
--- a/dtrans/source/win32/dtobj/DOTransferable.cxx
+++ b/dtrans/source/win32/dtobj/DOTransferable.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DOTransferable.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: tra $ $Date: 2001-04-04 14:10:12 $
+ * last change: $Author: tra $ $Date: 2001-05-15 12:36:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -572,7 +572,7 @@ sal_Bool SAL_CALL CDOTransferable::compareDataFlavors(
sal_Bool SAL_CALL CDOTransferable::cmpFullMediaType(
const Reference< XMimeContentType >& xLhs, const Reference< XMimeContentType >& xRhs ) const
{
- return xLhs->getFullMediaType().equalsIgnoreCase( xRhs->getFullMediaType( ) );
+ return xLhs->getFullMediaType().equalsIgnoreAsciiCase( xRhs->getFullMediaType( ) );
}
//------------------------------------------------------------------------
@@ -598,7 +598,7 @@ sal_Bool SAL_CALL CDOTransferable::cmpAllContentTypeParameter(
pLhs = xLhs->getParameterValue( xLhsFlavors[i] );
pRhs = xRhs->getParameterValue( xLhsFlavors[i] );
- if ( !pLhs.equalsIgnoreCase( pRhs ) )
+ if ( !pLhs.equalsIgnoreAsciiCase( pRhs ) )
{
bRet = sal_False;
break;
diff --git a/dtrans/source/win32/dtobj/DataFmtTransl.cxx b/dtrans/source/win32/dtobj/DataFmtTransl.cxx
index 9baa6a93583b..f27d83954e27 100644
--- a/dtrans/source/win32/dtobj/DataFmtTransl.cxx
+++ b/dtrans/source/win32/dtobj/DataFmtTransl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DataFmtTransl.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: tra $ $Date: 2001-03-23 11:58:01 $
+ * last change: $Author: tra $ $Date: 2001-05-15 12:37:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -338,7 +338,7 @@ sal_Bool SAL_CALL CDataFormatTranslator::isTextHtmlFormat( CLIPFORMAT cf ) const
{
OUString clipFormatName = getClipboardFormatName( cf );
- return ( clipFormatName.equalsIgnoreCase(
+ return ( clipFormatName.equalsIgnoreAsciiCase(
OUString::createFromAscii( "HTML (HyperText Markup Language)" ) ) );
}