summaryrefslogtreecommitdiff
path: root/vcl/osx/service_entry.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-05-23 18:43:16 +0300
committerTor Lillqvist <tml@collabora.com>2019-05-23 19:48:58 +0300
commit479a93f6a3a9844688e676acdb9bef557f8c5210 (patch)
tree0bba379bccf95623357a186ee801cd4045f55f8b /vcl/osx/service_entry.cxx
parent4c1479d63972aaea0b1bfee1ffb56b530ca05655 (diff)
Drop default values for parameters that are defaulted only once
Seriously, such default values only serve to confuse the code reader. Change-Id: I478442514baac3159ea0ae20132222ae58b38b8c
Diffstat (limited to 'vcl/osx/service_entry.cxx')
-rw-r--r--vcl/osx/service_entry.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/service_entry.cxx b/vcl/osx/service_entry.cxx
index 50f8498c2f63..eebb675ce9d2 100644
--- a/vcl/osx/service_entry.cxx
+++ b/vcl/osx/service_entry.cxx
@@ -41,7 +41,7 @@ uno::Reference< XInterface > AquaSalInstance::CreateClipboard( const Sequence< A
SalData* pSalData = GetSalData();
if( ! pSalData->mxClipboard.is() )
- pSalData->mxClipboard.set(static_cast< XClipboard* >(new AquaClipboard()), UNO_QUERY);
+ pSalData->mxClipboard.set(static_cast< XClipboard* >(new AquaClipboard(nullptr, true)), UNO_QUERY);
return pSalData->mxClipboard;
}