From 1946794ae09ba732022fe6a74ea45e304ab70b84 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Sun, 7 Apr 2013 12:06:47 +0200 Subject: 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 --- store/source/lockbyte.cxx | 4 ++-- store/source/store.cxx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'store/source') 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 { -- cgit