summaryrefslogtreecommitdiff
path: root/desktop/source/app/officeipcthread.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-01 15:39:39 +0200
committerNoel Grandin <noel@peralex.com>2016-03-02 07:57:38 +0200
commit09b5fe4c898cacd69042d1c585e27daf5d86cae7 (patch)
treeec6a77f4d3d2c595da0ef1f61721b23006246109 /desktop/source/app/officeipcthread.hxx
parentb0e18a68c86733b6d88a0c990d4fa4d938680727 (diff)
loplugin:unuseddefaultparam in desktop
Change-Id: I9a7ac03dcbc3849eced0f8431e186b59b31b2418
Diffstat (limited to 'desktop/source/app/officeipcthread.hxx')
-rw-r--r--desktop/source/app/officeipcthread.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/desktop/source/app/officeipcthread.hxx b/desktop/source/app/officeipcthread.hxx
index 401480353c1d..e00593dee359 100644
--- a/desktop/source/app/officeipcthread.hxx
+++ b/desktop/source/app/officeipcthread.hxx
@@ -106,9 +106,9 @@ class OfficeIPCThread : public salhelper::Thread
// controlling pipe communication during shutdown
static void SetDowning();
- static void EnableRequests( bool i_bEnable = true );
+ static void EnableRequests();
static bool AreRequestsPending();
- static void RequestsCompleted( int n = 1 );
+ static void RequestsCompleted();
static bool ExecuteCmdLineRequests( ProcessDocumentsRequest& );
// return sal_False if second office
@@ -118,9 +118,7 @@ class OfficeIPCThread : public salhelper::Thread
static void SetReady(
rtl::Reference< OfficeIPCThread > const & pThread =
rtl::Reference< OfficeIPCThread >());
- static void WaitForReady(
- rtl::Reference< OfficeIPCThread > const & pThread =
- rtl::Reference< OfficeIPCThread >());
+ static void WaitForReady();
static bool IsEnabled();
bool AreRequestsEnabled() const { return mbRequestsEnabled && ! mbDowning; }