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++ )
{
@@ -408,7 +408,6 @@ void SvMetaSlot::WriteSlotStubs( const OString& rShellName,
.WriteOString( aMethodName )
.WriteChar( ')' ) << endl;
}
}
}
void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,

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() );
@@ -444,7 +445,6 @@ void SvIdlParser::ReadInterfaceOrShellMethod( SvMetaAttribute& rAttr )
break;
}
Read(')');
}
}
void SvIdlParser::ReadSlotId(SvIdentifier& rSlotId)