summaryrefslogtreecommitdiff
path: root/idl/source/prj/parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/prj/parser.cxx')
-rw-r--r--idl/source/prj/parser.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/idl/source/prj/parser.cxx b/idl/source/prj/parser.cxx
index d7d134723cf4..da8e574c17a6 100644
--- a/idl/source/prj/parser.cxx
+++ b/idl/source/prj/parser.cxx
@@ -445,26 +445,6 @@ void SvIdlParser::ReadSlotAttribute( SvMetaSlot& rSlot )
rInStm.Seek( nTokPos );
}
- if( !rSlot.aMethod.is() )
- {
- SvToken& rTok = rInStm.GetToken();
- if( rTok.IsIdentifier() )
- {
- rSlot.aMethod = new SvMetaSlot();
- sal_uInt32 nTokPos = rInStm.Tell();
- if( rSlot.aMethod->ReadSvIdl( rBase, rInStm ) )
- {
- if( rSlot.aMethod->IsMethod() )
- {
- rSlot.aMethod->SetSlotId( rSlot.GetSlotId() );
- if( rSlot.aMethod->Test( rInStm ) )
- return;
- }
- rInStm.Seek( nTokPos );
- }
- rSlot.aMethod.clear();
- }
- }
}
void SvIdlParser::ReadInterfaceOrShellMethod( SvMetaAttribute& rAttr )