summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-11 14:50:15 +0200
committerNoel Grandin <noel@peralex.com>2016-02-12 09:13:43 +0200
commit62225eeb9832b982023dca6c5ce2bc64ac92728f (patch)
tree01467e6f989d4518bdd58ff4b4c44ead232743d3 /idl
parent0c6d6aa47ea0a7260b4bc01519e51ef78e97f459 (diff)
bIsModified in SvMetaModule is unused
Change-Id: Idc6effddce9923f0d48a111b2a04458efc11ebf9
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/module.hxx3
-rw-r--r--idl/source/objects/module.cxx4
2 files changed, 2 insertions, 5 deletions
diff --git a/idl/inc/module.hxx b/idl/inc/module.hxx
index 897356535c1a..ce5f8db0f236 100644
--- a/idl/inc/module.hxx
+++ b/idl/inc/module.hxx
@@ -29,8 +29,7 @@ class SvMetaModule : public SvMetaReference
// browser
OString aSlotIdFile;
- bool bImported : 1,
- bIsModified : 1;
+ bool bImported : 1;
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 06614ed5efc5..b364ddf7bedc 100644
--- a/idl/source/objects/module.cxx
+++ b/idl/source/objects/module.cxx
@@ -29,7 +29,7 @@
SvMetaModule::SvMetaModule( bool bImp )
- : bImported( bImp ), bIsModified( false )
+ : bImported( bImp )
{
}
@@ -149,8 +149,6 @@ void SvMetaModule::ReadContextSvIdl( SvIdlDataBase & rBase,
bool SvMetaModule::ReadSvIdl( SvIdlDataBase & rBase, SvTokenStream & rInStm )
{
- bIsModified = true; // up to now always when compiler running
-
sal_uInt32 nTokPos = rInStm.Tell();
SvToken& rTok = rInStm.GetToken_Next();
bool bOk = rTok.Is( SvHash_module() );