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 | |
parent | 7a65687ca22cf1644630522989403c323d6bc7db (diff) |
RTL_CONSTASCII_USTRINGPARAM in libs-gui 14
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/cnttype/mcnttfactory.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/cnttype/mcnttype.cxx | 8 | ||||
-rw-r--r-- | dtrans/source/generic/clipboardmanager.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/generic/dtrans.cxx | 4 | ||||
-rw-r--r-- | dtrans/source/generic/generic_clipboard.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/os2/clipb/Os2Clipboard.cxx | 6 | ||||
-rw-r--r-- | dtrans/source/os2/clipb/Os2Transferable.cxx | 4 | ||||
-rw-r--r-- | dtrans/source/win32/clipb/WinClipboard.cxx | 2 | ||||
-rw-r--r-- | dtrans/source/win32/dtobj/FetcList.cxx | 4 | ||||
-rw-r--r-- | dtrans/source/win32/ftransl/ftransl.cxx | 4 |
10 files changed, 19 insertions, 19 deletions
diff --git a/dtrans/source/cnttype/mcnttfactory.cxx b/dtrans/source/cnttype/mcnttfactory.cxx index 13e650ec8f42..58cadbebdb64 100644 --- a/dtrans/source/cnttype/mcnttfactory.cxx +++ b/dtrans/source/cnttype/mcnttfactory.cxx @@ -94,7 +94,7 @@ Reference< XMimeContentType > CMimeContentTypeFactory::createMimeContentType( co OUString SAL_CALL CMimeContentTypeFactory::getImplementationName( ) throw( RuntimeException ) { - return OUString::createFromAscii( MIMECONTENTTYPEFACTORY_IMPL_NAME ); + return OUString(RTL_CONSTASCII_USTRINGPARAM( MIMECONTENTTYPEFACTORY_IMPL_NAME )); } // ------------------------------------------------- diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx index 021e0c75d45f..3edc2eca2ba1 100644 --- a/dtrans/source/cnttype/mcnttype.cxx +++ b/dtrans/source/cnttype/mcnttype.cxx @@ -49,7 +49,7 @@ using namespace osl; // constants //------------------------------------------------------------------------ -const OUString TSPECIALS = OUString::createFromAscii( "()<>@,;:\\\"/[]?=" ); +const OUString TSPECIALS (RTL_CONSTASCII_USTRINGPARAM( "()<>@,;:\\\"/[]?=" )); const OUString TOKEN (RTL_CONSTASCII_USTRINGPARAM("!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~.")); const OUString SPACE (RTL_CONSTASCII_USTRINGPARAM(" ")); const OUString SEMICOLON (RTL_CONSTASCII_USTRINGPARAM(";")); @@ -323,12 +323,12 @@ OUString SAL_CALL CMimeContentType::pValue( ) OUString pvalue; // quoted pvalue - if ( m_nxtSym == OUString::createFromAscii( "\"" ) ) + if ( m_nxtSym == OUString(RTL_CONSTASCII_USTRINGPARAM( "\"" )) ) { getSym( ); pvalue = quotedPValue( ); - if ( OUString( &pvalue[pvalue.getLength() - 1], 1 ) != OUString::createFromAscii( "\"" ) ) + if ( OUString( &pvalue[pvalue.getLength() - 1], 1 ) != OUString(RTL_CONSTASCII_USTRINGPARAM( "\"" )) ) throw IllegalArgumentException( ); // remove the last quote-sign @@ -366,7 +366,7 @@ OUString SAL_CALL CMimeContentType::quotedPValue( ) else if ( isInRange( m_nxtSym, TOKEN + TSPECIALS + SPACE ) ) { pvalue += m_nxtSym; - if ( m_nxtSym == OUString::createFromAscii( "\"" ) ) + if ( m_nxtSym == OUString(RTL_CONSTASCII_USTRINGPARAM( "\"" )) ) bAfterQuoteSign = sal_True; else bAfterQuoteSign = sal_False; diff --git a/dtrans/source/generic/clipboardmanager.cxx b/dtrans/source/generic/clipboardmanager.cxx index 99b6a7b24b36..9535803281a6 100644 --- a/dtrans/source/generic/clipboardmanager.cxx +++ b/dtrans/source/generic/clipboardmanager.cxx @@ -63,7 +63,7 @@ ClipboardManager::~ClipboardManager() OUString SAL_CALL ClipboardManager::getImplementationName( ) throw(RuntimeException) { - return OUString::createFromAscii(CLIPBOARDMANAGER_IMPLEMENTATION_NAME); + return OUString(RTL_CONSTASCII_USTRINGPARAM(CLIPBOARDMANAGER_IMPLEMENTATION_NAME)); } // ------------------------------------------------------------------------ diff --git a/dtrans/source/generic/dtrans.cxx b/dtrans/source/generic/dtrans.cxx index 40eb6967adb3..dbe2ff05c79d 100644 --- a/dtrans/source/generic/dtrans.cxx +++ b/dtrans/source/generic/dtrans.cxx @@ -61,7 +61,7 @@ sal_Bool SAL_CALL component_writeInfo(void * /*pServiceManager*/, void * pRegist { Reference< XRegistryKey > xNewKey( reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey( - OUString::createFromAscii("/" CLIPBOARDMANAGER_IMPLEMENTATION_NAME "/UNO/SERVICES" ) ) ); + OUString(RTL_CONSTASCII_USTRINGPARAM("/" CLIPBOARDMANAGER_IMPLEMENTATION_NAME "/UNO/SERVICES" )) ) ); const Sequence< OUString > & rSNL = ClipboardManager_getSupportedServiceNames(); const OUString * pArray = rSNL.getConstArray(); @@ -70,7 +70,7 @@ sal_Bool SAL_CALL component_writeInfo(void * /*pServiceManager*/, void * pRegist xNewKey->createKey( pArray[nPos] ); xNewKey = reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey( - OUString::createFromAscii("/" GENERIC_CLIPBOARD_IMPLEMENTATION_NAME "/UNO/SERVICES" ) ); + OUString(RTL_CONSTASCII_USTRINGPARAM("/" GENERIC_CLIPBOARD_IMPLEMENTATION_NAME "/UNO/SERVICES" )) ); const Sequence< OUString > & rSNL2 = GenericClipboard_getSupportedServiceNames(); pArray = rSNL2.getConstArray(); diff --git a/dtrans/source/generic/generic_clipboard.cxx b/dtrans/source/generic/generic_clipboard.cxx index bec52b9c5b3f..57160e32785e 100644 --- a/dtrans/source/generic/generic_clipboard.cxx +++ b/dtrans/source/generic/generic_clipboard.cxx @@ -76,7 +76,7 @@ void SAL_CALL GenericClipboard::initialize( const Sequence< Any >& aArguments ) OUString SAL_CALL GenericClipboard::getImplementationName( ) throw(RuntimeException) { - return OUString::createFromAscii(GENERIC_CLIPBOARD_IMPLEMENTATION_NAME); + return OUString(RTL_CONSTASCII_USTRINGPARAM(GENERIC_CLIPBOARD_IMPLEMENTATION_NAME)); } // ------------------------------------------------------------------------ diff --git a/dtrans/source/os2/clipb/Os2Clipboard.cxx b/dtrans/source/os2/clipb/Os2Clipboard.cxx index 18f68fec9897..cc8c5240d6fb 100644 --- a/dtrans/source/os2/clipb/Os2Clipboard.cxx +++ b/dtrans/source/os2/clipb/Os2Clipboard.cxx @@ -134,7 +134,7 @@ void SAL_CALL Os2Clipboard::initialize( const Sequence< Any >& aArguments ) OUString SAL_CALL Os2Clipboard::getImplementationName() throw( RuntimeException ) { debug_printf("Os2Clipboard::getImplementationName\n"); - return OUString::createFromAscii( OS2_CLIPBOARD_IMPL_NAME ); + return OUString(RTL_CONSTASCII_USTRINGPARAM( OS2_CLIPBOARD_IMPL_NAME )); } sal_Bool SAL_CALL Os2Clipboard::supportsService( const OUString& ServiceName ) throw( RuntimeException ) @@ -239,7 +239,7 @@ void SAL_CALL Os2Clipboard::setContents( const Reference< XTransferable >& xTran // we can only export text or bitmap DataFlavor nFlavorText( OUString(RTL_CONSTASCII_USTRINGPARAM("text/plain;charset=utf-16")), OUString(RTL_CONSTASCII_USTRINGPARAM("Unicode-Text")), CPPUTYPE_OUSTRING); - DataFlavor nFlavorBitmap( OUString::createFromAscii( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" ), + DataFlavor nFlavorBitmap( OUString(RTL_CONSTASCII_USTRINGPARAM( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" )), OUString(RTL_CONSTASCII_USTRINGPARAM("Bitmap")), CPPUTYPE_DEFAULT); // try text transfer data (if any) @@ -414,7 +414,7 @@ void SAL_CALL Os2Clipboard::notifyAllClipboardListener( ) Sequence< OUString > SAL_CALL Os2Clipboard_getSupportedServiceNames() { Sequence< OUString > aRet(1); - aRet[0] = OUString::createFromAscii( OS2_CLIPBOARD_SERVICE_NAME ); + aRet[0] = OUString(RTL_CONSTASCII_USTRINGPARAM( OS2_CLIPBOARD_SERVICE_NAME )); return aRet; } diff --git a/dtrans/source/os2/clipb/Os2Transferable.cxx b/dtrans/source/os2/clipb/Os2Transferable.cxx index 410e60ee7de4..bc1840d38c0a 100644 --- a/dtrans/source/os2/clipb/Os2Transferable.cxx +++ b/dtrans/source/os2/clipb/Os2Transferable.cxx @@ -66,7 +66,7 @@ Os2Transferable::Os2Transferable( } handle = UWinQueryClipbrdData( hAB, UCLIP_CF_BITMAP); if (handle) { - aFlavor.MimeType = OUString::createFromAscii( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" ); + aFlavor.MimeType = OUString(RTL_CONSTASCII_USTRINGPARAM( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" )); aFlavor.DataType = getCppuType( (OUString*)0 ); //debug_printf("Os2Transferable::Os2Transferable pszText %s\n", pszText); } @@ -115,7 +115,7 @@ Any SAL_CALL Os2Transferable::getTransferData( const DataFlavor& rFlavor ) } // retrieve bitmap - if( rFlavor.MimeType.equalsIgnoreAsciiCase( OUString::createFromAscii( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" ) ) ) + if( rFlavor.MimeType.equalsIgnoreAsciiCase( OUString(RTL_CONSTASCII_USTRINGPARAM( "application/x-openoffice-bitmap;windows_formatname=\"Bitmap\"" )) ) ) { if( UWinOpenClipbrd( hAB ) ) { diff --git a/dtrans/source/win32/clipb/WinClipboard.cxx b/dtrans/source/win32/clipb/WinClipboard.cxx index 48f60629905a..0ade8dcad446 100644 --- a/dtrans/source/win32/clipb/WinClipboard.cxx +++ b/dtrans/source/win32/clipb/WinClipboard.cxx @@ -293,7 +293,7 @@ void SAL_CALL CWinClipboard::disposing() OUString SAL_CALL CWinClipboard::getImplementationName( ) throw(RuntimeException) { - return OUString::createFromAscii( WINCLIPBOARD_IMPL_NAME ); + return OUString(RTL_CONSTASCII_USTRINGPARAM( WINCLIPBOARD_IMPL_NAME )); } // ------------------------------------------------- diff --git a/dtrans/source/win32/dtobj/FetcList.cxx b/dtrans/source/win32/dtobj/FetcList.cxx index 98f88db21ea0..3f7be8b53f2b 100644 --- a/dtrans/source/win32/dtobj/FetcList.cxx +++ b/dtrans/source/win32/dtobj/FetcList.cxx @@ -361,8 +361,8 @@ OUString SAL_CALL CFormatRegistrar::getCharsetFromDataFlavor( const DataFlavor& try { Reference< XMimeContentTypeFactory > xMimeFac( - m_SrvMgr->createInstance( OUString::createFromAscii( \ - "com.sun.star.datatransfer.MimeContentTypeFactory" ) ), UNO_QUERY ); + m_SrvMgr->createInstance( OUString(RTL_CONSTASCII_USTRINGPARAM( \ + "com.sun.star.datatransfer.MimeContentTypeFactory" )) ), UNO_QUERY ); if( xMimeFac.is( ) ) { 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 )); } // ------------------------------------------------- |