Kaydet (Commit) 8f9193d8 authored tarafından Chr. Rossmanith's avatar Chr. Rossmanith Kaydeden (comit) Eike Rathke

Remove RTL_CONSTASCII_STRINGPARAM in NeonUri.cxx

Change-Id: Ibfce9af9bec2e1bac435514ad6d3d27eac5f1a17
Reviewed-on: https://gerrit.libreoffice.org/2975Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
Tested-by: 's avatarEike Rathke <erack@redhat.com>
üst 254eb959
...@@ -144,11 +144,9 @@ void NeonUri::init( const rtl::OString & rUri, const ne_uri * pUri ) ...@@ -144,11 +144,9 @@ void NeonUri::init( const rtl::OString & rUri, const ne_uri * pUri )
{ {
// Complete URI. // Complete URI.
const ne_uri * pUriDefs const ne_uri * pUriDefs
= matchIgnoreAsciiCase( rUri, = rUri.matchIgnoreAsciiCase( "ftp:" ) ?
RTL_CONSTASCII_STRINGPARAM( "ftp:" ) ) ?
&g_sUriDefaultsFTP : &g_sUriDefaultsFTP :
matchIgnoreAsciiCase( rUri, rUri.matchIgnoreAsciiCase( "https:" ) ?
RTL_CONSTASCII_STRINGPARAM( "https:" ) ) ?
&g_sUriDefaultsHTTPS : &g_sUriDefaultsHTTPS :
&g_sUriDefaultsHTTP; &g_sUriDefaultsHTTP;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment