summaryrefslogtreecommitdiff
path: root/tools/source/rc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-27 22:08:37 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-27 22:08:37 +0100
commita2c7a85db679aa537524a772ce7989980398fe34 (patch)
treea645ac62655850c6c6c4f189999ed7954e1cff9e /tools/source/rc
parent6b61814afb849a65060cbf217ea448c3ead2d129 (diff)
callcatcher: remove various unused methods
Diffstat (limited to 'tools/source/rc')
-rw-r--r--tools/source/rc/resmgr.cxx24
1 files changed, 0 insertions, 24 deletions
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,