summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-18 14:39:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-19 09:28:00 +0200
commit0f7e64f3edbc1a49e9681d12ce24326150a8a675 (patch)
tree8f7129134e134607f4913736723f3e49a2392bdb /desktop/source/deployment/inc
parent7b83ed313e0e54cb7da4525d13f63937e10867fa (diff)
loplugin:constparams in desktop
Change-Id: Idba3acbd1e6ad5e1ce1cae9f80f764906ab8b143 Reviewed-on: https://gerrit.libreoffice.org/40157 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/source/deployment/inc')
-rw-r--r--desktop/source/deployment/inc/lockfile.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx
index 68dbb8ee0df2..8e2fea7b60dc 100644
--- a/desktop/source/deployment/inc/lockfile.hxx
+++ b/desktop/source/deployment/inc/lockfile.hxx
@@ -51,7 +51,7 @@
namespace desktop {
class Lockfile;
- bool Lockfile_execWarning( Lockfile * that );
+ bool Lockfile_execWarning( Lockfile const * that );
class DESKTOP_DEPLOYMENTMISC_DLLPUBLIC Lockfile
{
@@ -61,7 +61,7 @@ namespace desktop {
Lockfile( bool bIPCserver = true );
// separating GUI code:
- typedef bool (* fpExecWarning)( Lockfile * that );
+ typedef bool (* fpExecWarning)( Lockfile const * that );
// checks the lockfile, asks user when lockfile is
// found (iff gui) and returns false when we may not continue
@@ -83,7 +83,7 @@ namespace desktop {
// access to data in file
void syncToFile() const;
bool isStale() const;
- friend bool Lockfile_execWarning( Lockfile * that );
+ friend bool Lockfile_execWarning( Lockfile const * that );
};