diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-15 10:12:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-15 10:12:44 +0100 |
commit | 1f76438a087d5f63e69851ec187cd1287f9887a7 (patch) | |
tree | 0ccbf7f042ccad1871b628e5b9ed6c08e186d1be /fpicker | |
parent | 0c1b8516cb290f072e59da62198575cdbc131fce (diff) |
fpicker: Use appropriate OUString functions on string constants
Change-Id: Icbb91dbfcce1f16f77e8238cbb86ff9eba2d5784
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeControlAccess.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx index 486200822d9f..2c5bf9ba9996 100644 --- a/fpicker/source/office/OfficeControlAccess.cxx +++ b/fpicker/source/office/OfficeControlAccess.cxx @@ -206,7 +206,7 @@ namespace svt OUString aTmp( OStringToOUString( aHelpId, RTL_TEXTENCODING_UTF8 ) ); INetURLObject aHID( aTmp ); if ( aHID.GetProtocol() == INET_PROT_NOT_VALID ) - sHelpURL = OUString::createFromAscii( INET_HID_SCHEME ); + sHelpURL = INET_HID_SCHEME; sHelpURL += aTmp; return sHelpURL; } |