summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-08 09:01:57 +0200
committerNoel Grandin <noel@peralex.com>2016-02-08 14:00:37 +0200
commitaa9b67dda02bc596988196261205619e10a08f6f (patch)
treed8e3fad79535415e4cb34321273b504e5e5fd8f7 /idl
parentf5a28361582a5b46a4e316f2018132980925c393 (diff)
remove unnecessary module GUIDs in *.sdi files
Change-Id: I78784abc1031027d69bbe31d150bc78c8bfbfcf4
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/module.hxx2
-rw-r--r--idl/source/objects/module.cxx13
2 files changed, 0 insertions, 15 deletions
diff --git a/idl/inc/module.hxx b/idl/inc/module.hxx
index fa316592d44b..a8db97003dcd 100644
--- a/idl/inc/module.hxx
+++ b/idl/inc/module.hxx
@@ -32,8 +32,6 @@ class SvMetaModule : public SvMetaReference
bool bImported : 1,
bIsModified : 1;
- SvGlobalName aBeginName;
- SvGlobalName aEndName;
protected:
virtual void ReadAttributesSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) override;
virtual void ReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) override;
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 )
{