summaryrefslogtreecommitdiff
path: root/uui/source/iahndl-ioexceptions.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 /uui/source/iahndl-ioexceptions.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 'uui/source/iahndl-ioexceptions.cxx')
-rw-r--r--uui/source/iahndl-ioexceptions.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/uui/source/iahndl-ioexceptions.cxx b/uui/source/iahndl-ioexceptions.cxx
index 4c1953199d5e..d969e2553592 100644
--- a/uui/source/iahndl-ioexceptions.cxx
+++ b/uui/source/iahndl-ioexceptions.cxx
@@ -31,8 +31,8 @@ namespace {
bool
getStringRequestArgument(uno::Sequence< uno::Any > const & rArguments,
- rtl::OUString const & rKey,
- rtl::OUString * pValue)
+ OUString const & rKey,
+ OUString * pValue)
SAL_THROW(())
{
for (sal_Int32 i = 0; i < rArguments.getLength(); ++i)
@@ -40,7 +40,7 @@ getStringRequestArgument(uno::Sequence< uno::Any > const & rArguments,
beans::PropertyValue aProperty;
if ((rArguments[i] >>= aProperty) && aProperty.Name == rKey)
{
- rtl::OUString aValue;
+ OUString aValue;
if (aProperty.Value >>= aValue)
{
if (pValue)
@@ -54,7 +54,7 @@ getStringRequestArgument(uno::Sequence< uno::Any > const & rArguments,
bool
getBoolRequestArgument(uno::Sequence< uno::Any > const & rArguments,
- rtl::OUString const & rKey,
+ OUString const & rKey,
bool * pValue)
SAL_THROW(())
{
@@ -77,7 +77,7 @@ getBoolRequestArgument(uno::Sequence< uno::Any > const & rArguments,
bool
getResourceNameRequestArgument(uno::Sequence< uno::Any > const & rArguments,
- rtl::OUString * pValue)
+ OUString * pValue)
SAL_THROW(())
{
if (!getStringRequestArgument(rArguments, "Uri", pValue))
@@ -97,7 +97,7 @@ UUIInteractionHelper::handleInteractiveIOException(
uno::Reference< task::XInteractionRequest > const & rRequest,
bool bObtainErrorStringOnly,
bool & bHasErrorString,
- rtl::OUString & rErrorString)
+ OUString & rErrorString)
SAL_THROW((uno::RuntimeException))
{
uno::Any aAnyRequest(rRequest->getRequest());
@@ -112,7 +112,7 @@ UUIInteractionHelper::handleInteractiveIOException(
aRequestArguments = aAugmentedIoException.Arguments;
ErrCode nErrorCode;
- std::vector< rtl::OUString > aArguments;
+ std::vector< OUString > aArguments;
static ErrCode const
aErrorCode[ucb::IOErrorCode_WRONG_VERSION + 1][2]
= { { ERRCODE_IO_ABORT, ERRCODE_UUI_IO_ABORT }, // ABORT
@@ -212,7 +212,7 @@ UUIInteractionHelper::handleInteractiveIOException(
case ucb::IOErrorCode_DEVICE_NOT_READY:
{
- rtl::OUString aArgUri;
+ OUString aArgUri;
if (getResourceNameRequestArgument(aRequestArguments,
&aArgUri))
{
@@ -236,8 +236,8 @@ UUIInteractionHelper::handleInteractiveIOException(
case ucb::IOErrorCode_DIFFERENT_DEVICES:
{
- rtl::OUString aArgVolume;
- rtl::OUString aArgOtherVolume;
+ OUString aArgVolume;
+ OUString aArgOtherVolume;
if (getStringRequestArgument(aRequestArguments, "Volume", &aArgVolume)
&& getStringRequestArgument(aRequestArguments, "OtherVolume",
&aArgOtherVolume))
@@ -254,11 +254,11 @@ UUIInteractionHelper::handleInteractiveIOException(
case ucb::IOErrorCode_NOT_EXISTING:
{
- rtl::OUString aArgUri;
+ OUString aArgUri;
if (getResourceNameRequestArgument(aRequestArguments,
&aArgUri))
{
- rtl::OUString aResourceType;
+ OUString aResourceType;
getStringRequestArgument(aRequestArguments, "ResourceType",
&aResourceType);
nErrorCode = aResourceType == "volume"
@@ -275,7 +275,7 @@ UUIInteractionHelper::handleInteractiveIOException(
default:
{
- rtl::OUString aArgUri;
+ OUString aArgUri;
if (getResourceNameRequestArgument(aRequestArguments,
&aArgUri))
{