diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 633f9fbf8ab1..91dc17e20b28 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -117,7 +117,6 @@ public: RscLongEnumRange aEnumLong; RscIdRange aIdUShort; RscIdRange aIdNoZeroUShort; - RscIdRange aIdLong; RscString aString; RscString aStringLiteral; RscLangEnum aLangType; 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 );