diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 13:15:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-24 14:56:13 +0000 |
commit | c74b62ca6e1790020b0e19cdf2f3ee3d022affbf (patch) | |
tree | b98dca97d1ec1b38d1be2a05e204477403d63b61 /rsc | |
parent | 6f71fa11c0b1c5a9683c43bc98acec57a4d53610 (diff) |
aNoZeroShort appears unused
Change-Id: Iae1c921c4f57130fe5657ed023f5087ad5e9a82d
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rscdb.hxx | 1 | ||||
-rw-r--r-- | rsc/source/parser/rscdb.cxx | 2 | ||||
-rw-r--r-- | rsc/source/parser/rscinit.cxx | 3 |
3 files changed, 0 insertions, 6 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 8e6024d1e600..633f9fbf8ab1 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -117,7 +117,6 @@ public: RscLongEnumRange aEnumLong; RscIdRange aIdUShort; RscIdRange aIdNoZeroUShort; - RscBreakRange aNoZeroShort; RscIdRange aIdLong; RscString aString; RscString aStringLiteral; diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index 3fdf4dc36048..94a5bc1f35cb 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 ) - , aNoZeroShort( pHS->getID( "NoZeroShort" ), RSC_NOTYPE ) , aIdLong( pHS->getID( "IDLONG" ), RSC_NOTYPE ) , aString( pHS->getID( "Chars" ), RSC_NOTYPE ) , aStringLiteral( pHS->getID( "Chars" ), RSC_NOTYPE ) @@ -181,7 +180,6 @@ RscTypCont::~RscTypCont() aUShort.Pre_dtor(); aIdUShort.Pre_dtor(); aIdNoZeroUShort.Pre_dtor(); - aNoZeroShort.Pre_dtor(); aIdLong.Pre_dtor(); aString.Pre_dtor(); aVersion.pClass->Pre_dtor(); diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx index ee821630c0dd..029cb4de6962 100644 --- a/rsc/source/parser/rscinit.cxx +++ b/rsc/source/parser/rscinit.cxx @@ -92,9 +92,6 @@ void RscTypCont::Init() aIdNoZeroUShort.SetRange( 1, 0xFFFF ); - aNoZeroShort.SetRange( -32768, 32767 ); - aNoZeroShort.SetOutRange( 0 ); - aIdLong.SetRange( SAL_MIN_INT32, SAL_MAX_INT32 ); } { |