diff options
Diffstat (limited to 'rsc/inc/rsctools.hxx')
-rw-r--r-- | rsc/inc/rsctools.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rsc/inc/rsctools.hxx b/rsc/inc/rsctools.hxx index 8cfb5b983a67..cf26e05bee7a 100644 --- a/rsc/inc/rsctools.hxx +++ b/rsc/inc/rsctools.hxx @@ -90,15 +90,6 @@ public: { return GetPointer( 0 ); } - sal_uInt16 GetShort( sal_uInt32 nPos ) - { - sal_uInt16 nVal = 0; - char* pFrom = GetPointer(nPos); - char* pTo = reinterpret_cast<char*>(&nVal); - *pTo++ = *pFrom++; - *pTo++ = *pFrom++; - return bSwap ? OSL_SWAPWORD( nVal ) : nVal; - } sal_uInt32 GetLong( sal_uInt32 nPos ) { sal_uInt32 nVal = 0; |