diff options
-rw-r--r-- | idl/source/objects/types.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx index 46262e7b98d9..a3dde07d96a7 100644 --- a/idl/source/objects/types.cxx +++ b/idl/source/objects/types.cxx @@ -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 ); } |