summaryrefslogtreecommitdiffstats
path: root/store/source
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 /store/source
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 'store/source')
-rw-r--r--store/source/lockbyte.cxx4
-rw-r--r--store/source/store.cxx1
2 files changed, 2 insertions, 3 deletions
diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx
index 9a05e94c57ef..2c322bacc6d4 100644
--- a/store/source/lockbyte.cxx
+++ b/store/source/lockbyte.cxx
@@ -221,7 +221,7 @@ struct FileHandle
return store_E_InvalidParameter;
// Convert into FileUrl.
- rtl::OUString aFileUrl;
+ OUString aFileUrl;
if (osl_getFileURLFromSystemPath (pFilename, &(aFileUrl.pData)) != osl_File_E_None)
{
// Not system path. Assume file url.
@@ -230,7 +230,7 @@ struct FileHandle
if (!aFileUrl.startsWith("file://"))
{
// Not file url. Assume relative path.
- rtl::OUString aCwdUrl;
+ OUString aCwdUrl;
(void) osl_getProcessWorkingDir (&(aCwdUrl.pData));
// Absolute file url.
diff --git a/store/source/store.cxx b/store/source/store.cxx
index 184de2ca2cd0..11780b6e57d6 100644
--- a/store/source/store.cxx
+++ b/store/source/store.cxx
@@ -33,7 +33,6 @@
#include "storlckb.hxx"
using rtl::Reference;
-using rtl::OString;
namespace store
{