From 479a93f6a3a9844688e676acdb9bef557f8c5210 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 23 May 2019 18:43:16 +0300 Subject: Drop default values for parameters that are defaulted only once Seriously, such default values only serve to confuse the code reader. Change-Id: I478442514baac3159ea0ae20132222ae58b38b8c --- vcl/osx/service_entry.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl/osx/service_entry.cxx') 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; } -- cgit