From 67fe42070332709823f0b00e6311809bc3e5341c Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Fri, 16 Oct 2015 07:27:28 +0200 Subject: sfx items: The bDeep parameter of SFX_ITEMSET_ARG is always false. Change-Id: Ifdffc82c9b4ec2e534204294575a78e34e0338c1 --- sfx2/source/appl/appopen.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sfx2/source/appl/appopen.cxx') diff --git a/sfx2/source/appl/appopen.cxx b/sfx2/source/appl/appopen.cxx index cb74ee028399..3aecc38f4007 100644 --- a/sfx2/source/appl/appopen.cxx +++ b/sfx2/source/appl/appopen.cxx @@ -232,12 +232,12 @@ sal_uInt32 CheckPasswd_Impl { // use the comphelper password helper to request a password OUString aPassword; - SFX_ITEMSET_ARG( pSet, pPasswordItem, SfxStringItem, SID_PASSWORD, false); + SFX_ITEMSET_ARG(pSet, pPasswordItem, SfxStringItem, SID_PASSWORD); if ( pPasswordItem ) aPassword = pPasswordItem->GetValue(); uno::Sequence< beans::NamedValue > aEncryptionData; - SFX_ITEMSET_ARG( pSet, pEncryptionDataItem, SfxUnoAnyItem, SID_ENCRYPTIONDATA, false); + SFX_ITEMSET_ARG(pSet, pEncryptionDataItem, SfxUnoAnyItem, SID_ENCRYPTIONDATA); if ( pEncryptionDataItem ) pEncryptionDataItem->GetValue() >>= aEncryptionData; -- cgit