From a2c7a85db679aa537524a772ce7989980398fe34 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 27 Jul 2011 22:08:37 +0100 Subject: callcatcher: remove various unused methods --- tools/source/rc/resmgr.cxx | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'tools/source/rc') diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index 8b53ebb81823..f45d91b7c349 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -121,8 +121,6 @@ class InternalResMgr void **pResHandle ); public: static void FreeGlobalRes( void *, void * ); - - SvStream * GetBitmapStream( sal_uInt32 nResId ); }; // ======================================================================= @@ -532,30 +530,8 @@ struct ImpContentMixLessCompare : public ::std::binary_function< ImpContent, sal } }; - -// ======================================================================= - static ResHookProc pImplResHookProc = 0; -// ======================================================================= - -SvStream * InternalResMgr::GetBitmapStream( sal_uInt32 nId ) -{ - // Anfang der Strings suchen - ImpContent * pFind = ::std::lower_bound(pContent, - pContent + nEntries, - ((sal_uInt64(RT_SYS_BITMAP) << 32) | nId), - ImpContentMixLessCompare()); - if ( (pFind != (pContent + nEntries)) && (pFind->nTypeAndId == ((sal_uInt64(RT_SYS_BITMAP) << 32) | nId)) ) - { - pStm->Seek( pFind->nOffset ); - return pStm; - } - return NULL; -} - -// ----------------------------------------------------------------------- - InternalResMgr::InternalResMgr( const OUString& rFileURL, const OUString& rPrefix, const OUString& rResName, -- cgit