summaryrefslogtreecommitdiff
path: root/framework/source/uifactory
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-21 15:52:45 +0200
committerNoel Grandin <noel@peralex.com>2013-11-22 08:07:19 +0200
commit73342dbb82ba074d01962359dac50fb2aa36cbeb (patch)
treeaddab0397681725810b42ad55ab15be3fdb4c236 /framework/source/uifactory
parent071c3f3e93c4c00cf57ce3c382325cd717fed511 (diff)
remove unnecessary RTL_CONSTASCII_STRINGPARAM
A final pass through the code, converting code to use the new OUString and OString methods that can detect string literals. Change-Id: Ifa6382335e5650a1c67e52006b26354e0692c710
Diffstat (limited to 'framework/source/uifactory')
-rw-r--r--framework/source/uifactory/uicontrollerfactory.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/framework/source/uifactory/uicontrollerfactory.cxx b/framework/source/uifactory/uicontrollerfactory.cxx
index 2303bebf89e4..e14eba7a0ade 100644
--- a/framework/source/uifactory/uicontrollerfactory.cxx
+++ b/framework/source/uifactory/uicontrollerfactory.cxx
@@ -49,9 +49,7 @@ UIControllerFactory::UIControllerFactory(
, m_pConfigAccess()
{
rtl::OUStringBuffer aBuffer;
- aBuffer.appendAscii(
- RTL_CONSTASCII_STRINGPARAM(
- "/org.openoffice.Office.UI.Controller/Registered/" ) );
+ aBuffer.append( "/org.openoffice.Office.UI.Controller/Registered/" );
aBuffer.append( rConfigurationNode );
m_pConfigAccess = new ConfigurationAccess_ControllerFactory( m_xContext, aBuffer.makeStringAndClear() );
m_pConfigAccess->acquire();