diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-23 19:18:07 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-23 19:18:07 +0100 |
commit | 1df8ba50d7eaa05b9f10ffab18196a85d5faf5c8 (patch) | |
tree | 8c0e95538dce6df17b7ab4c9194e2f4c55e92ee5 /dtrans/source/win32/ftransl/ftransl.cxx | |
parent | 7a65687ca22cf1644630522989403c323d6bc7db (diff) |
RTL_CONSTASCII_USTRINGPARAM in libs-gui 14
Diffstat (limited to 'dtrans/source/win32/ftransl/ftransl.cxx')
-rw-r--r-- | dtrans/source/win32/ftransl/ftransl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dtrans/source/win32/ftransl/ftransl.cxx b/dtrans/source/win32/ftransl/ftransl.cxx index e7db01af1cb4..fb1eec247c59 100644 --- a/dtrans/source/win32/ftransl/ftransl.cxx +++ b/dtrans/source/win32/ftransl/ftransl.cxx @@ -60,7 +60,7 @@ #define CPPUTYPE_SALINT32 getCppuType( ( sal_Int32 * ) 0 ) #define OUSTR( str ) OUString::createFromAscii( #str ) #define OUSTR_( str ) OUString::createFromAscii( str ) -#define EMPTY_OUSTR OUString(RTL_CONSTASCII_USTRINGPARAM("")) +#define EMPTY_OUSTR OUString() //#define PRIVATE_OO OUString::createFromAscii( "application/x-openoffice;" "windows_formatname=" ) const rtl::OUString Windows_FormatName (RTL_CONSTASCII_USTRINGPARAM("windows_formatname")); @@ -236,7 +236,7 @@ DataFlavor SAL_CALL CDataFormatTranslator::getDataFlavorFromSystemDataType( cons OUString SAL_CALL CDataFormatTranslator::getImplementationName( ) throw( RuntimeException ) { - return OUString::createFromAscii( IMPL_NAME ); + return OUString(RTL_CONSTASCII_USTRINGPARAM( IMPL_NAME )); } // ------------------------------------------------- |