diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-30 14:36:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-30 16:33:32 +0000 |
commit | 70fb9e0f48d38d7fb01cb54dab7d5ed775f65d9c (patch) | |
tree | e4075859495e1dcaba14801d24368ec8762f86af /rsc/source | |
parent | 21f934a7c54e6a62aac046b99e05bbcf394c4de4 (diff) |
aIdUShort is now unused
Change-Id: I44c2748be879f083bc6ebb6c17e3a3a7038f8ad8
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 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 ); } { |