summaryrefslogtreecommitdiff
path: root/sd/source/ui/tools/IconCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/tools/IconCache.cxx')
-rwxr-xr-x[-rw-r--r--]sd/source/ui/tools/IconCache.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/tools/IconCache.cxx b/sd/source/ui/tools/IconCache.cxx
index 12e7b6b52e95..de4d53b73495 100644..100755
--- a/sd/source/ui/tools/IconCache.cxx
+++ b/sd/source/ui/tools/IconCache.cxx
@@ -50,17 +50,17 @@ private:
*/
static IconCache* mpInstance;
- typedef ::std::hash_map<USHORT,Image> ImageContainer;
+ typedef ::std::hash_map<sal_uInt16,Image> ImageContainer;
ImageContainer maContainer;
- Image GetIcon (USHORT nResourceId);
+ Image GetIcon (sal_uInt16 nResourceId);
};
IconCache* IconCache::Implementation::mpInstance = NULL;
-Image IconCache::Implementation::GetIcon (USHORT nResourceId)
+Image IconCache::Implementation::GetIcon (sal_uInt16 nResourceId)
{
Image aResult;
ImageContainer::iterator iImage;
@@ -109,7 +109,7 @@ IconCache& IconCache::Instance (void)
-Image IconCache::GetIcon (USHORT nResourceId)
+Image IconCache::GetIcon (sal_uInt16 nResourceId)
{
return mpImpl->GetIcon (nResourceId);
}