diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index d9654b001d7e..133b7a8b85ba 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -102,7 +102,6 @@ public: RscRange aShort; RscRange aUShort; RscLongEnumRange aEnumLong; - RscIdRange aIdUShort; RscIdRange aIdNoZeroUShort; RscString aString; RscString aStringLiteral; diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index f9a7afae51b5..bb0fecf03706 100644 --- a/rsc/source/parser/rscdb.cxx +++ b/rsc/source/parser/rscdb.cxx @@ -49,7 +49,6 @@ RscTypCont::RscTypCont( RscError * pErrHdl, , aShort( pHS->getID( "short" ), RSC_NOTYPE ) , aUShort( pHS->getID( "sal_uInt16" ), RSC_NOTYPE ) , aEnumLong( pHS->getID( "enum_long" ), RSC_NOTYPE ) - , aIdUShort( pHS->getID( "IDUSHORT" ), RSC_NOTYPE ) , aIdNoZeroUShort( pHS->getID( "IDUSHORT" ), RSC_NOTYPE ) , aString( pHS->getID( "Chars" ), RSC_NOTYPE ) , aStringLiteral( pHS->getID( "Chars" ), RSC_NOTYPE ) @@ -176,7 +175,6 @@ RscTypCont::~RscTypCont() aBool.Pre_dtor(); aShort.Pre_dtor(); aUShort.Pre_dtor(); - aIdUShort.Pre_dtor(); aIdNoZeroUShort.Pre_dtor(); aString.Pre_dtor(); aVersion.pClass->Pre_dtor(); diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index 60ade77c2e1f..85023b82d924 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -76,8 +76,6 @@ void RscTypCont::Init() aEnumLong.SetRange( SAL_MIN_INT32, SAL_MAX_INT32 ); - aIdUShort.SetRange( 0, 0xFFFF ); - aIdNoZeroUShort.SetRange( 1, 0xFFFF ); } {