loplugin:flatten in idl

Change-Id: I7e8fe338a366d146c7951fe54f74cc5e42bde039
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91833
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin
2020-04-07 16:13:10 +02:00
parent f9151f4262
commit 8ee2063fa8
2 changed files with 30 additions and 31 deletions

View File

@@ -386,9 +386,9 @@ void SvMetaSlot::WriteSlotStubs( const OString& rShellName,
}
aMethodName = GetStateMethod();
if (!aMethodName.isEmpty() &&
aMethodName != "NoState")
{
if (aMethodName.isEmpty() || aMethodName == "NoState")
return;
bool bIn = false;
for ( size_t n=0; n < rList.size(); n++ )
{
@@ -409,7 +409,6 @@ void SvMetaSlot::WriteSlotStubs( const OString& rShellName,
.WriteChar( ')' ) << endl;
}
}
}
void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
const OString& rSlotId,

View File

@@ -431,8 +431,9 @@ void SvIdlParser::ReadInterfaceOrShellMethod( SvMetaAttribute& rAttr )
xT->SetRef(rAttr.GetType() );
rAttr.aType = xT;
rAttr.aType->SetType( MetaTypeType::Method );
if (!ReadIf(')'))
{
if (ReadIf(')'))
return;
while (true)
{
tools::SvRef<SvMetaAttribute> xParamAttr( new SvMetaAttribute() );
@@ -445,7 +446,6 @@ void SvIdlParser::ReadInterfaceOrShellMethod( SvMetaAttribute& rAttr )
}
Read(')');
}
}
void SvIdlParser::ReadSlotId(SvIdentifier& rSlotId)
{