summaryrefslogtreecommitdiff
path: root/unotools/source/config/accelcfg.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 11:46:36 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 12:58:04 -0500
commit8c525962030bb5b26a8ee84ba49b4bfd557fe3d4 (patch)
tree1abec479a13513e6b40900123f8cbb6309f23f03 /unotools/source/config/accelcfg.cxx
parentc6b7e74076828e63ea9cfe91935cc11673939491 (diff)
targeted string re-work
Change-Id: I1af89db47fb3e387b5b83a86424bfac44eb28135
Diffstat (limited to 'unotools/source/config/accelcfg.cxx')
-rw-r--r--unotools/source/config/accelcfg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/config/accelcfg.cxx b/unotools/source/config/accelcfg.cxx
index b1d1c3f67f49..f2c1efe21a30 100644
--- a/unotools/source/config/accelcfg.cxx
+++ b/unotools/source/config/accelcfg.cxx
@@ -82,7 +82,7 @@ SvtAcceleratorConfig_Impl::SvtAcceleratorConfig_Impl( Reference< XInputStream >&
: bModified( false )
{
Reference< XParser > xParser( ::comphelper::getProcessServiceFactory()->createInstance(
- ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser"))),
+ ::rtl::OUString("com.sun.star.xml.sax.Parser")),
UNO_QUERY);
// connect stream to input stream to the parser
@@ -102,7 +102,7 @@ bool SvtAcceleratorConfig_Impl::Commit( Reference< XOutputStream >& rOutputStrea
Reference< XDocumentHandler > xWriter;
xWriter = Reference< XDocumentHandler >( ::comphelper::getProcessServiceFactory()->createInstance(
- ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Writer"))), UNO_QUERY) ;
+ ::rtl::OUString("com.sun.star.xml.sax.Writer")), UNO_QUERY) ;
Reference< ::com::sun::star::io::XActiveDataSource> xDataSource( xWriter , UNO_QUERY );
xDataSource->setOutputStream( rOutputStream );
@@ -202,7 +202,7 @@ SvtAcceleratorConfiguration::~SvtAcceleratorConfiguration()
String SvtAcceleratorConfiguration::GetStreamName()
{
- return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("KeyBindings.xml"));
+ return rtl::OUString("KeyBindings.xml");
}
SvStream* SvtAcceleratorConfiguration::GetDefaultStream( StreamMode nMode )