summaryrefslogtreecommitdiff
path: root/extensions/source/update/check/download.cxx
diff options
context:
space:
mode:
authorDirk Völzke <dv@openoffice.org>2009-09-25 11:56:17 +0000
committerDirk Völzke <dv@openoffice.org>2009-09-25 11:56:17 +0000
commit7d22694d5186484a470947c395cb19a7b7ed079b (patch)
treea915a9c3c228a0dab0f79dcfb3cc6bcd6d844d55 /extensions/source/update/check/download.cxx
parentea69598127b41c0b87f1fc3359f7fa3887e91d54 (diff)
#i88957# second try to remove warnings
Diffstat (limited to 'extensions/source/update/check/download.cxx')
-rw-r--r--extensions/source/update/check/download.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/update/check/download.cxx b/extensions/source/update/check/download.cxx
index 2936d6078d93..76d4b373a329 100644
--- a/extensions/source/update/check/download.cxx
+++ b/extensions/source/update/check/download.cxx
@@ -327,9 +327,9 @@ bool curl_run(const rtl::OUString& rURL, OutData& out, const rtl::OString& aProx
curl_easy_getinfo( pCURL, CURLINFO_RESPONSE_CODE, &nError );
if ( 403 == nError )
- aMessage += UNISTRING( " 403: Access denied!" );
+ aMessage += rtl::OString( RTL_CONSTASCII_STRINGPARAM( " 403: Access denied!" ) );
else if ( 404 == nError )
- aMessage += UNISTRING( " 404: File not found!" );
+ aMessage += rtl::OString( RTL_CONSTASCII_STRINGPARAM( " 404: File not found!" ) );
else if ( 416 == nError )
{
// we got this error probably, because we already downloaded the file
@@ -338,9 +338,9 @@ bool curl_run(const rtl::OUString& rURL, OutData& out, const rtl::OString& aProx
}
else
{
- aMessage += UNISTRING( ":error code = " );
+ aMessage += rtl::OString( RTL_CONSTASCII_STRINGPARAM( ":error code = " ) );
aMessage += aMessage.valueOf( nError );
- aMessage += UNISTRING( " !" );
+ aMessage += rtl::OString( RTL_CONSTASCII_STRINGPARAM( " !" ) );
}
}
if ( !ret )