diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2012-12-01 23:43:40 -0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-12-02 12:43:41 +0000 |
commit | 1eafd90aee0c945b941db99d70a25d1b633c1401 (patch) | |
tree | ad1395e7c9605af4edf99c0e6982d95b74be1097 /desktop | |
parent | 9ef9bba9fe1d7a5b86f3287064fbf7023771f0a4 (diff) |
Remove unused method from desktop
Change-Id: I17b269c70bbf82aa5a4345d488777ac98d1d6938
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/1221
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/inc/lockfile.hxx | 3 | ||||
-rw-r--r-- | desktop/source/deployment/misc/lockfile.cxx | 9 |
2 files changed, 0 insertions, 12 deletions
diff --git a/desktop/source/deployment/inc/lockfile.hxx b/desktop/source/deployment/inc/lockfile.hxx index 8a6daf39a81b..3d9a365d74cd 100644 --- a/desktop/source/deployment/inc/lockfile.hxx +++ b/desktop/source/deployment/inc/lockfile.hxx @@ -65,9 +65,6 @@ namespace desktop { // found (iff gui) and returns false when we may not continue sal_Bool check( fpExecWarning execWarning ); - // removes the lockfile. should only be called in exceptional situations - void clean(void); - // removes the lockfile ~Lockfile(void); diff --git a/desktop/source/deployment/misc/lockfile.cxx b/desktop/source/deployment/misc/lockfile.cxx index d4dcaf59ed29..6bb7bb73c3cb 100644 --- a/desktop/source/deployment/misc/lockfile.cxx +++ b/desktop/source/deployment/misc/lockfile.cxx @@ -199,15 +199,6 @@ namespace desktop { aConfig.Flush( ); } - void Lockfile::clean( void ) - { - if ( m_bRemove ) - { - File::remove( m_aLockname ); - m_bRemove = sal_False; - } - } - Lockfile::~Lockfile( void ) { // unlock userdata by removing file |