summaryrefslogtreecommitdiff
path: root/idl/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-01 12:54:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-03 09:08:42 +0000
commitf3c1d240bd4f32d014db00a9864c56f77b7cb127 (patch)
treeff952e1002ed98d1a0d537193f7bd15aac64b1c9 /idl/source
parent643b70006fd5f6762561696421808f20d4e1e86f (diff)
loplugin:constantparams
Change-Id: Ib162ba9297b9d900ea42c7e5216e152d3e58a361 Reviewed-on: https://gerrit.libreoffice.org/25769 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'idl/source')
-rw-r--r--idl/source/objects/slot.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index 22702f1b1d69..c17926a0e44f 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -33,27 +33,27 @@ SvMetaObject *SvMetaSlot::MakeClone() const
}
SvMetaSlot::SvMetaSlot()
- : aRecordPerSet( true, false )
- , aRecordAbsolute( false, false )
+ : aRecordPerSet( true )
+ , aRecordAbsolute( false )
, pLinkedSlot(nullptr)
, pNextSlot(nullptr)
, nListPos(0)
, pEnumValue(nullptr)
- , aReadOnlyDoc ( true, false )
- , aExport( true, false )
+ , aReadOnlyDoc ( true )
+ , aExport( true )
{
}
SvMetaSlot::SvMetaSlot( SvMetaType * pType )
: SvMetaAttribute( pType )
- , aRecordPerSet( true, false )
- , aRecordAbsolute( false, false )
+ , aRecordPerSet( true )
+ , aRecordAbsolute( false )
, pLinkedSlot(nullptr)
, pNextSlot(nullptr)
, nListPos(0)
, pEnumValue(nullptr)
- , aReadOnlyDoc ( true, false )
- , aExport( true, false )
+ , aReadOnlyDoc ( true )
+ , aExport( true )
{
}