summaryrefslogtreecommitdiffstats
path: root/sfx2/source/appl/imestatuswindow.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /sfx2/source/appl/imestatuswindow.cxx
parentTypo in comment in resmgr.hxx (diff)
downloadcore-1946794ae09ba732022fe6a74ea45e304ab70b84.tar.gz
core-1946794ae09ba732022fe6a74ea45e304ab70b84.zip
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'sfx2/source/appl/imestatuswindow.cxx')
-rw-r--r--sfx2/source/appl/imestatuswindow.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sfx2/source/appl/imestatuswindow.cxx b/sfx2/source/appl/imestatuswindow.cxx
index cd645b7da1b4..5644f7803edb 100644
--- a/sfx2/source/appl/imestatuswindow.cxx
+++ b/sfx2/source/appl/imestatuswindow.cxx
@@ -95,7 +95,7 @@ void ImeStatusWindow::init()
{
sal_Bool bShow = sal_Bool();
if (getConfig()->getPropertyValue(
- rtl::OUString(
+ OUString(
"ShowStatusWindow"))
>>= bShow)
Application::ShowImeStatusWindow(bShow);
@@ -114,7 +114,7 @@ bool ImeStatusWindow::isShowing()
{
sal_Bool bShow = sal_Bool();
if (getConfig()->getPropertyValue(
- rtl::OUString("ShowStatusWindow"))
+ OUString("ShowStatusWindow"))
>>= bShow)
return bShow;
}
@@ -133,7 +133,7 @@ void ImeStatusWindow::show(bool bShow)
{
css::uno::Reference< css::beans::XPropertySet > xConfig(getConfig());
xConfig->setPropertyValue(
- rtl::OUString("ShowStatusWindow"),
+ OUString("ShowStatusWindow"),
css::uno::makeAny(static_cast< sal_Bool >(bShow)));
css::uno::Reference< css::util::XChangesBatch > xCommit(
xConfig, css::uno::UNO_QUERY);
@@ -162,7 +162,7 @@ ImeStatusWindow::~ImeStatusWindow()
try
{
m_xConfig->removePropertyChangeListener(
- rtl::OUString("ShowStatusWindow"),
+ OUString("ShowStatusWindow"),
m_xConfigListener);
}
catch (css::uno::Exception &)
@@ -201,15 +201,15 @@ css::uno::Reference< css::beans::XPropertySet > ImeStatusWindow::getConfig()
throw css::lang::DisposedException();
if (!m_xContext.is())
throw css::uno::RuntimeException(
- rtl::OUString(
+ OUString(
"null comphelper::getProcessServiceFactory"),
0);
css::uno::Reference< css::lang::XMultiServiceFactory > xProvider =
css::configuration::theDefaultProvider::get( m_xContext );
css::beans::PropertyValue aArg(
- rtl::OUString("nodepath"), -1,
+ OUString("nodepath"), -1,
css::uno::makeAny(
- rtl::OUString(
+ OUString(
"/org.openoffice.Office.Common/I18N/InputMethod")),
css::beans::PropertyState_DIRECT_VALUE);
css::uno::Sequence< css::uno::Any > aArgs(1);
@@ -217,13 +217,13 @@ css::uno::Reference< css::beans::XPropertySet > ImeStatusWindow::getConfig()
m_xConfig
= css::uno::Reference< css::beans::XPropertySet >(
xProvider->createInstanceWithArguments(
- rtl::OUString(
+ OUString(
"com.sun.star.configuration.ConfigurationUpdateAccess"),
aArgs),
css::uno::UNO_QUERY);
if (!m_xConfig.is())
throw css::uno::RuntimeException(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
+ OUString(RTL_CONSTASCII_USTRINGPARAM(
"null com.sun.star.configuration."
"ConfigurationUpdateAccess")),
0);
@@ -238,7 +238,7 @@ css::uno::Reference< css::beans::XPropertySet > ImeStatusWindow::getConfig()
// no dispose notifications):
m_xConfigListener = new WeakPropertyChangeListener(this);
xConfig->addPropertyChangeListener(
- rtl::OUString("ShowStatusWindow"),
+ OUString("ShowStatusWindow"),
m_xConfigListener);
}
return xConfig;