summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2012-06-01 16:17:42 +0200
committerThorsten Behrens <tbehrens@suse.com>2012-06-01 16:18:09 +0200
commitc9337a8bfcd904d723c76525e2473578d5af4e77 (patch)
tree2fd4774c0b26744449d791833db89937e1191737 /xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx
parent721bb0f92da4245acb00c08d645ea395965738a3 (diff)
Targeted string re-work xmlhelp/xmlscript
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx
index 1fe0425a631d..f5702566a410 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetforroot.cxx
@@ -55,17 +55,17 @@ ResultSetForRoot::ResultSetForRoot( const uno::Reference< lang::XMultiServiceFac
m_aIdents.resize( m_aPath.size() );
Command aCommand;
- aCommand.Name = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "getPropertyValues" ));
+ aCommand.Name = rtl::OUString( "getPropertyValues" );
aCommand.Argument <<= m_sProperty;
for( sal_uInt32 i = 0; i < m_aPath.size(); ++i )
{
m_aPath[i] =
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.help://" )) +
- m_aPath[i] +
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "?Language=" )) +
- m_aURLParameter.get_language() +
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "&System=" )) +
+ rtl::OUString( "vnd.sun.star.help://" ) +
+ m_aPath[i] +
+ rtl::OUString( "?Language=" ) +
+ m_aURLParameter.get_language() +
+ rtl::OUString( "&System=" ) +
m_aURLParameter.get_system();
m_nRow = sal_Int32( i );