diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 12:06:47 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-04-07 14:23:11 +0200 |
commit | 1946794ae09ba732022fe6a74ea45e304ab70b84 (patch) | |
tree | e32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /tools/source/misc | |
parent | 5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (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 'tools/source/misc')
-rw-r--r-- | tools/source/misc/appendunixshellword.cxx | 2 | ||||
-rw-r--r-- | tools/source/misc/extendapplicationenvironment.cxx | 8 | ||||
-rw-r--r-- | tools/source/misc/getprocessworkingdir.cxx | 6 |
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()) { |