diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-08 09:01:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-08 14:00:37 +0200 |
commit | aa9b67dda02bc596988196261205619e10a08f6f (patch) | |
tree | d8e3fad79535415e4cb34321273b504e5e5fd8f7 /idl/source/objects/module.cxx | |
parent | f5a28361582a5b46a4e316f2018132980925c393 (diff) |
remove unnecessary module GUIDs in *.sdi files
Change-Id: I78784abc1031027d69bbe31d150bc78c8bfbfcf4
Diffstat (limited to 'idl/source/objects/module.cxx')
-rw-r--r-- | idl/source/objects/module.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx index 66b29c365607..59b04ce9c3dd 100644 --- a/idl/source/objects/module.cxx +++ b/idl/source/objects/module.cxx @@ -168,19 +168,6 @@ bool SvMetaModule::ReadSvIdl( SvIdlDataBase & rBase, SvTokenStream & rInStm ) sal_uInt32 nTokPos = rInStm.Tell(); SvToken * pTok = rInStm.GetToken_Next(); bool bOk = pTok->Is( SvHash_module() ); - if( bOk ) - { - pTok = rInStm.GetToken_Next(); - if( pTok->IsString() ) - bOk = aBeginName.MakeId(OStringToOUString(pTok->GetString(), RTL_TEXTENCODING_ASCII_US)); - } - rInStm.ReadDelemiter(); - if( bOk ) - { - pTok = rInStm.GetToken_Next(); - if( pTok->IsString() ) - bOk = aEndName.MakeId(OStringToOUString(pTok->GetString(), RTL_TEXTENCODING_ASCII_US)); - } rInStm.ReadDelemiter(); if( bOk ) { |