summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/fileidentifierconverter.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 /ucbhelper/source/client/fileidentifierconverter.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 'ucbhelper/source/client/fileidentifierconverter.cxx')
-rw-r--r--ucbhelper/source/client/fileidentifierconverter.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/ucbhelper/source/client/fileidentifierconverter.cxx b/ucbhelper/source/client/fileidentifierconverter.cxx
index 1f53b4a1035c..c1498cc21680 100644
--- a/ucbhelper/source/client/fileidentifierconverter.cxx
+++ b/ucbhelper/source/client/fileidentifierconverter.cxx
@@ -37,14 +37,14 @@ namespace ucbhelper {
//
//============================================================================
-rtl::OUString
+OUString
getLocalFileURL() SAL_THROW((uno::RuntimeException))
{
// If there were more file systems than just "file:///" (e.g., the obsolete
// "vnd.sun.star.wfs:///"), this code should query all relevant UCPs for
// their com.sun.star.ucb.XFileIdentifierConverter.getFileProviderLocality
// and return the most local one:
- return rtl::OUString("file:///");
+ return OUString("file:///");
}
//============================================================================
@@ -53,11 +53,11 @@ getLocalFileURL() SAL_THROW((uno::RuntimeException))
//
//============================================================================
-rtl::OUString
+OUString
getFileURLFromSystemPath(
uno::Reference< ucb::XUniversalContentBroker > const & rUcb,
- rtl::OUString const & rBaseURL,
- rtl::OUString const & rSystemPath)
+ OUString const & rBaseURL,
+ OUString const & rSystemPath)
SAL_THROW((uno::RuntimeException))
{
OSL_ASSERT(rUcb.is());
@@ -67,7 +67,7 @@ getFileURLFromSystemPath(
if (xConverter.is())
return xConverter->getFileURLFromSystemPath(rBaseURL, rSystemPath);
else
- return rtl::OUString();
+ return OUString();
}
//============================================================================
@@ -76,10 +76,10 @@ getFileURLFromSystemPath(
//
//============================================================================
-rtl::OUString
+OUString
getSystemPathFromFileURL(
uno::Reference< ucb::XUniversalContentBroker > const & rUcb,
- rtl::OUString const & rURL)
+ OUString const & rURL)
SAL_THROW((uno::RuntimeException))
{
OSL_ASSERT(rUcb.is());
@@ -89,7 +89,7 @@ getSystemPathFromFileURL(
if (xConverter.is())
return xConverter->getSystemPathFromFileURL(rURL);
else
- return rtl::OUString();
+ return OUString();
}
}