diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:43:34 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:43:34 -0500 |
commit | de0c09bb427e0206289365b83ddde02405db5ace (patch) | |
tree | c933c2ec3cb85830ed71b7ac325e509571150b4e /shell/source/backends/wininetbe | |
parent | e6adc90c231588349ce7d8c1abc5fcb446f61706 (diff) |
targeted string re-work
Change-Id: I6eb2242506ef2d230770e513579caf4455ec37d5
Diffstat (limited to 'shell/source/backends/wininetbe')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index 7b0a9ed0b80a..4f364f7246c0 100644 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -211,12 +211,12 @@ WinInetBackend::WinInetBackend() ProxyEntry aTypeIndepProxy = FindProxyEntry( aProxyList, rtl::OUString()); ProxyEntry aHttpProxy = FindProxyEntry( aProxyList, rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM( "http" ) ) ); + "http" ) ); ProxyEntry aHttpsProxy = FindProxyEntry( aProxyList, rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM( "https" ) ) ); + "https" ) ); ProxyEntry aFtpProxy = FindProxyEntry( aProxyList, rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM( "ftp" ) ) ); + "ftp" ) ); if( aTypeIndepProxy.Server.getLength() ) { @@ -307,7 +307,7 @@ void WinInetBackend::setPropertyValue( { throw css::lang::IllegalArgumentException( rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM("setPropertyValue not supported")), + "setPropertyValue not supported"), static_cast< cppu::OWeakObject * >(this), -1); } @@ -350,7 +350,7 @@ css::uno::Any WinInetBackend::getPropertyValue( //------------------------------------------------------------------------------ rtl::OUString SAL_CALL WinInetBackend::getBackendName(void) { - return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.configuration.backend.WinInetBackend")) ; + return rtl::OUString("com.sun.star.comp.configuration.backend.WinInetBackend") ; } //------------------------------------------------------------------------------ @@ -366,7 +366,7 @@ rtl::OUString SAL_CALL WinInetBackend::getImplementationName(void) uno::Sequence<rtl::OUString> SAL_CALL WinInetBackend::getBackendServiceNames(void) { uno::Sequence<rtl::OUString> aServiceNameList(1); - aServiceNameList[0] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.backend.WinInetBackend")) ; + aServiceNameList[0] = rtl::OUString( "com.sun.star.configuration.backend.WinInetBackend") ; return aServiceNameList ; } |