summaryrefslogtreecommitdiffstats
path: root/tools/source/misc
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 /tools/source/misc
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 'tools/source/misc')
-rw-r--r--tools/source/misc/appendunixshellword.cxx2
-rw-r--r--tools/source/misc/extendapplicationenvironment.cxx8
-rw-r--r--tools/source/misc/getprocessworkingdir.cxx6
3 files changed, 8 insertions, 8 deletions
diff --git a/tools/source/misc/appendunixshellword.cxx b/tools/source/misc/appendunixshellword.cxx
index 6a15a1f5163c..96e9b65846b2 100644
--- a/tools/source/misc/appendunixshellword.cxx
+++ b/tools/source/misc/appendunixshellword.cxx
@@ -33,7 +33,7 @@
namespace tools {
void appendUnixShellWord(
- rtl::OStringBuffer * accumulator, rtl::OString const & text)
+ OStringBuffer * accumulator, OString const & text)
{
OSL_ASSERT(accumulator != NULL);
if (text.isEmpty()) {
diff --git a/tools/source/misc/extendapplicationenvironment.cxx b/tools/source/misc/extendapplicationenvironment.cxx
index 68181ade22d2..e8b3ff8686b9 100644
--- a/tools/source/misc/extendapplicationenvironment.cxx
+++ b/tools/source/misc/extendapplicationenvironment.cxx
@@ -51,9 +51,9 @@ void extendApplicationEnvironment() {
#endif
// Make sure URE_BOOTSTRAP environment variable is set (failure is fatal):
- rtl::OUStringBuffer env;
- rtl::OUString envVar("URE_BOOTSTRAP");
- rtl::OUString uri;
+ OUStringBuffer env;
+ OUString envVar("URE_BOOTSTRAP");
+ OUString uri;
if (rtl::Bootstrap::get(envVar, uri))
{
if (!uri.matchIgnoreAsciiCase("vnd.sun.star.pathname:"))
@@ -72,7 +72,7 @@ void extendApplicationEnvironment() {
env.append(rtl::Bootstrap::encode(uri));
env.append(SAL_CONFIGFILE("fundamental"));
}
- rtl::OUString envValue(env.makeStringAndClear());
+ OUString envValue(env.makeStringAndClear());
if (osl_setEnvironment(envVar.pData, envValue.pData) != osl_Process_E_None) {
abort();
}
diff --git a/tools/source/misc/getprocessworkingdir.cxx b/tools/source/misc/getprocessworkingdir.cxx
index 115e5c86aa2b..f3bcf8cd1c97 100644
--- a/tools/source/misc/getprocessworkingdir.cxx
+++ b/tools/source/misc/getprocessworkingdir.cxx
@@ -31,10 +31,10 @@
namespace tools {
-bool getProcessWorkingDir(rtl::OUString &rUrl)
+bool getProcessWorkingDir(OUString &rUrl)
{
- rUrl = rtl::OUString();
- rtl::OUString s("$OOO_CWD");
+ rUrl = OUString();
+ OUString s("$OOO_CWD");
rtl::Bootstrap::expandMacros(s);
if (s.isEmpty())
{