idl : remove useless define and copy the code directly !

Change-Id: I92d53beb110a44624b72f7ec76ab8d1089f9caf0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127438
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
This commit is contained in:
Arnaud VERSINI 2021-12-24 20:23:28 +01:00 committed by Mike Kaganski
parent 57415c0f65
commit 7a6fb93905

View file

@ -119,17 +119,15 @@ void SvMetaAttribute::Insert(SvSlotElementList&)
{
}
#define CTOR \
: nType( MetaTypeType::Base ) \
, bIsItem( false ) \
SvMetaType::SvMetaType()
CTOR
: nType( MetaTypeType::Base )
, bIsItem( false )
{
}
SvMetaType::SvMetaType( const OString& rName )
CTOR
: nType( MetaTypeType::Base )
, bIsItem( false )
{
SetName( rName );
}