summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/inc/lockfile.hxx
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 /desktop/source/deployment/inc/lockfile.hxx
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 'desktop/source/deployment/inc/lockfile.hxx')
-rw-r--r--desktop/source/deployment/inc/lockfile.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx
index 647ba2f8610d..1e041244a281 100644
--- a/desktop/source/deployment/inc/lockfile.hxx
+++ b/desktop/source/deployment/inc/lockfile.hxx
@@ -38,13 +38,13 @@
#include "dp_misc_api.hxx"
-#define LOCKFILE_SUFFIX rtl::OUString( "/.lock" )
-#define LOCKFILE_GROUP rtl::OString( "Lockdata" )
-#define LOCKFILE_USERKEY rtl::OString( "User" )
-#define LOCKFILE_HOSTKEY rtl::OString( "Host" )
-#define LOCKFILE_STAMPKEY rtl::OString( "Stamp" )
-#define LOCKFILE_TIMEKEY rtl::OString( "Time" )
-#define LOCKFILE_IPCKEY rtl::OString( "IPCServer" )
+#define LOCKFILE_SUFFIX OUString( "/.lock" )
+#define LOCKFILE_GROUP OString( "Lockdata" )
+#define LOCKFILE_USERKEY OString( "User" )
+#define LOCKFILE_HOSTKEY OString( "Host" )
+#define LOCKFILE_STAMPKEY OString( "Stamp" )
+#define LOCKFILE_TIMEKEY OString( "Time" )
+#define LOCKFILE_IPCKEY OString( "IPCServer" )
namespace desktop {
@@ -71,13 +71,13 @@ namespace desktop {
private:
bool m_bIPCserver;
// full qualified name (file://-url) of the lockfile
- rtl::OUString m_aLockname;
+ OUString m_aLockname;
// flag whether the d'tor should delete the lock
sal_Bool m_bRemove;
sal_Bool m_bIsLocked;
// ID
- rtl::OUString m_aId;
- rtl::OUString m_aDate;
+ OUString m_aId;
+ OUString m_aDate;
// access to data in file
void syncToFile(void) const;
sal_Bool isStale(void) const;