--- imagecache.h.orig 2008-12-20 18:02:29.000000000 +0100 +++ imagecache.h 2008-12-20 18:07:46.000000000 +0100 @@ -19,21 +19,21 @@ item_map mItems; usage_list mUsage; - uint mMaxItems; + unsigned int mMaxItems; protected: virtual void DeleteObject(const key_type &Key, data_type &Data) = 0; virtual void ResetObject(data_type &Data) = 0; public: - cxCache(uint MaxItems); + cxCache(unsigned int MaxItems); virtual ~cxCache(); void Reset(void); void Flush(void); bool Contains(const key_type &Key); data_type &operator[](const key_type &Key); - uint Count(void) { return mUsage.size(); } + unsigned int Count(void) { return mUsage.size(); } }; template @@ -43,7 +43,7 @@ } template -cxCache::cxCache(uint MaxItems) +cxCache::cxCache(unsigned int MaxItems) { mMaxItems = MaxItems; }