summaryrefslogtreecommitdiff
path: root/sfx2/source/control/thumbnailviewacc.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/control/thumbnailviewacc.cxx
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 'sfx2/source/control/thumbnailviewacc.cxx')
-rw-r--r--sfx2/source/control/thumbnailviewacc.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sfx2/source/control/thumbnailviewacc.cxx b/sfx2/source/control/thumbnailviewacc.cxx
index cabd9ec05adb..2d21a5bc7f5a 100644
--- a/sfx2/source/control/thumbnailviewacc.cxx
+++ b/sfx2/source/control/thumbnailviewacc.cxx
@@ -200,20 +200,20 @@ sal_Int16 SAL_CALL ThumbnailViewAcc::getAccessibleRole()
: accessibility::AccessibleRole::LIST );
}
-::rtl::OUString SAL_CALL ThumbnailViewAcc::getAccessibleDescription()
+OUString SAL_CALL ThumbnailViewAcc::getAccessibleDescription()
throw (uno::RuntimeException)
{
ThrowIfDisposed();
const SolarMutexGuard aSolarGuard;
- return rtl::OUString("ThumbnailView");
+ return OUString("ThumbnailView");
}
-::rtl::OUString SAL_CALL ThumbnailViewAcc::getAccessibleName()
+OUString SAL_CALL ThumbnailViewAcc::getAccessibleName()
throw (uno::RuntimeException)
{
ThrowIfDisposed();
const SolarMutexGuard aSolarGuard;
- rtl::OUString aRet;
+ OUString aRet;
if ( mpParent )
aRet = mpParent->GetAccessibleName();
@@ -260,7 +260,7 @@ lang::Locale SAL_CALL ThumbnailViewAcc::getLocale()
{
ThrowIfDisposed();
const SolarMutexGuard aSolarGuard;
- const ::rtl::OUString aEmptyStr;
+ const OUString aEmptyStr;
uno::Reference< accessibility::XAccessible > xParent( getAccessibleParent() );
lang::Locale aRet( aEmptyStr, aEmptyStr, aEmptyStr );
@@ -601,7 +601,7 @@ void ThumbnailViewAcc::ThrowIfDisposed (void)
{
OSL_TRACE ("Calling disposed object. Throwing exception:");
throw lang::DisposedException (
- ::rtl::OUString("object has been already disposed"),
+ OUString("object has been already disposed"),
static_cast<uno::XWeak*>(this));
}
else
@@ -712,17 +712,17 @@ sal_Int16 SAL_CALL ThumbnailViewItemAcc::getAccessibleRole()
return accessibility::AccessibleRole::LIST_ITEM;
}
-::rtl::OUString SAL_CALL ThumbnailViewItemAcc::getAccessibleDescription()
+OUString SAL_CALL ThumbnailViewItemAcc::getAccessibleDescription()
throw (uno::RuntimeException)
{
- return ::rtl::OUString();
+ return OUString();
}
-::rtl::OUString SAL_CALL ThumbnailViewItemAcc::getAccessibleName()
+OUString SAL_CALL ThumbnailViewItemAcc::getAccessibleName()
throw (uno::RuntimeException)
{
const SolarMutexGuard aSolarGuard;
- rtl::OUString aRet;
+ OUString aRet;
if( mpParent )
{
@@ -730,7 +730,7 @@ sal_Int16 SAL_CALL ThumbnailViewItemAcc::getAccessibleRole()
if( aRet.isEmpty() )
{
- rtl::OUStringBuffer aBuffer("Item ");
+ OUStringBuffer aBuffer("Item ");
aBuffer.append(static_cast<sal_Int32>(mpParent->mnId));
aRet = aBuffer.makeStringAndClear();
}
@@ -779,7 +779,7 @@ lang::Locale SAL_CALL ThumbnailViewItemAcc::getLocale()
throw (accessibility::IllegalAccessibleComponentStateException, uno::RuntimeException)
{
const SolarMutexGuard aSolarGuard;
- const ::rtl::OUString aEmptyStr;
+ const OUString aEmptyStr;
uno::Reference< accessibility::XAccessible > xParent( getAccessibleParent() );
lang::Locale aRet( aEmptyStr, aEmptyStr, aEmptyStr );