summaryrefslogtreecommitdiff
path: root/desktop/source/splash
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 /desktop/source/splash
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
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 'desktop/source/splash')
-rw-r--r--desktop/source/splash/splash.cxx12
-rw-r--r--desktop/source/splash/splash.hxx4
2 files changed, 8 insertions, 8 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx
index f14ee311d489..ac92ea813ef1 100644
--- a/desktop/source/splash/splash.cxx
+++ b/desktop/source/splash/splash.cxx
@@ -580,7 +580,7 @@ void SplashScreen::Paint( const Rectangle&)
Rectangle aNativeControlRegion, aNativeContentRegion;
if( GetNativeControlRegion( CTRL_INTROPROGRESS, PART_ENTIRE_CONTROL, aDrawRect,
- CTRL_STATE_ENABLED, aValue, rtl::OUString(),
+ CTRL_STATE_ENABLED, aValue, OUString(),
aNativeControlRegion, aNativeContentRegion ) )
{
long nProgressHeight = aNativeControlRegion.GetHeight();
@@ -633,13 +633,13 @@ css::uno::Reference< css::uno::XInterface > desktop::splash::create(
return static_cast< cppu::OWeakObject * >(new SplashScreen);
}
-rtl::OUString desktop::splash::getImplementationName() {
- return rtl::OUString("com.sun.star.office.comp.SplashScreen");
+OUString desktop::splash::getImplementationName() {
+ return OUString("com.sun.star.office.comp.SplashScreen");
}
-css::uno::Sequence< rtl::OUString > desktop::splash::getSupportedServiceNames() {
- rtl::OUString name("com.sun.star.office.SplashScreen");
- return css::uno::Sequence< rtl::OUString >(&name, 1);
+css::uno::Sequence< OUString > desktop::splash::getSupportedServiceNames() {
+ OUString name("com.sun.star.office.SplashScreen");
+ return css::uno::Sequence< OUString >(&name, 1);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/desktop/source/splash/splash.hxx b/desktop/source/splash/splash.hxx
index 191f8d955c67..0d64f080805e 100644
--- a/desktop/source/splash/splash.hxx
+++ b/desktop/source/splash/splash.hxx
@@ -41,9 +41,9 @@ create(
com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
const &);
-rtl::OUString SAL_CALL getImplementationName();
+OUString SAL_CALL getImplementationName();
-com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
+com::sun::star::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames();
} }