summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2010-07-19 17:20:31 +0200
committerMathias Bauer <mba@openoffice.org>2010-07-19 17:20:31 +0200
commitab22ac073431af69a5c59cecbff92db6737bd3db (patch)
treea0d2b3b9725b722eb95f78ed30fa84c447de8127 /fpicker
parentfc36d6a80a11f89c6a155f737e6a42665c039564 (diff)
CWS changehid: #i111784#: fix error in fpicker HelpURL
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/OfficeControlAccess.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx
index 1e34b2eee840..7d33030ed2a9 100644
--- a/fpicker/source/office/OfficeControlAccess.cxx
+++ b/fpicker/source/office/OfficeControlAccess.cxx
@@ -224,7 +224,8 @@ namespace svt
// the file view "overloaded" the SetHelpId
aHelpId = static_cast< SvtFileView* >( _pControl )->GetHelpId( );
- rtl::OUString sHelpURL( rtl::OStringToOUString( aHelpId, RTL_TEXTENCODING_UTF8 ) );
+ ::rtl::OUString sHelpURL( RTL_CONSTASCII_USTRINGPARAM( "HID:" ) );
+ sHelpURL += rtl::OStringToOUString( aHelpId, RTL_TEXTENCODING_UTF8 );
return sHelpURL;
}