diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 13:18:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 14:56:13 +0000 |
commit | 1cb07ff1c6c1fe7e81f2edcab1f4a1cd515c24b4 (patch) | |
tree | 5e322d20bc00eb294d1931ba625b6cfc5c47e1c9 /rsc/source | |
parent | f599904124518ebcfe6671b0b2961eb290d96c94 (diff) |
aIdLong is unused
Change-Id: If9aaadadc144d40cdc43e51e1f44edb5f8574524
Diffstat (limited to 'rsc/source')
-rw-r--r-- | rsc/source/parser/rscdb.cxx | 2 | ||||
-rw-r--r-- | rsc/source/parser/rscinit.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index 94a5bc1f35cb..ce566cc13c92 100644 --- a/rsc/source/parser/rscdb.cxx +++ b/rsc/source/parser/rscdb.cxx @@ -52,7 +52,6 @@ RscTypCont::RscTypCont( RscError * pErrHdl, , aEnumLong( pHS->getID( "enum_long" ), RSC_NOTYPE ) , aIdUShort( pHS->getID( "IDUSHORT" ), RSC_NOTYPE ) , aIdNoZeroUShort( pHS->getID( "IDUSHORT" ), RSC_NOTYPE ) - , aIdLong( pHS->getID( "IDLONG" ), RSC_NOTYPE ) , aString( pHS->getID( "Chars" ), RSC_NOTYPE ) , aStringLiteral( pHS->getID( "Chars" ), RSC_NOTYPE ) , aLangType() @@ -180,7 +179,6 @@ RscTypCont::~RscTypCont() aUShort.Pre_dtor(); aIdUShort.Pre_dtor(); aIdNoZeroUShort.Pre_dtor(); - aIdLong.Pre_dtor(); aString.Pre_dtor(); aVersion.pClass->Pre_dtor(); // sub-types diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index 029cb4de6962..8af350582664 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -91,8 +91,6 @@ void RscTypCont::Init() aIdUShort.SetRange( 0, 0xFFFF ); aIdNoZeroUShort.SetRange( 1, 0xFFFF ); - - aIdLong.SetRange( SAL_MIN_INT32, SAL_MAX_INT32 ); } { aLangType.Init( aNmTb ); |