summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/bmcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/bmcache.cxx')
-rwxr-xr-xsd/source/ui/view/bmcache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/bmcache.cxx b/sd/source/ui/view/bmcache.cxx
index c7f313037ff8..35739b46ff72 100755
--- a/sd/source/ui/view/bmcache.cxx
+++ b/sd/source/ui/view/bmcache.cxx
@@ -60,13 +60,13 @@ BitmapCache::~BitmapCache()
void BitmapCache::Remove( const SdPage* pPage )
{
- for( ULONG nPos = 0; nPos < aEntries.Count(); )
+ for( sal_uLong nPos = 0; nPos < aEntries.Count(); )
{
BitmapCacheEntry* pCand = (BitmapCacheEntry*) aEntries.GetObject( nPos );
if( pCand->pPage == pPage )
{
- pCand = (BitmapCacheEntry*) aEntries.Remove((ULONG)nPos);
+ pCand = (BitmapCacheEntry*) aEntries.Remove((sal_uLong)nPos);
delete pCand->pGraphicObject;
delete pCand;
}