diff options
Diffstat (limited to 'ksvg/impl/LRUCache.h')
-rw-r--r-- | ksvg/impl/LRUCache.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksvg/impl/LRUCache.h b/ksvg/impl/LRUCache.h index f9045262..ef51e1d8 100644 --- a/ksvg/impl/LRUCache.h +++ b/ksvg/impl/LRUCache.h @@ -36,7 +36,7 @@ public: virtual ~MinOneLRUCache() {} void insert(const keyType& key, const valueType& value, int cost); - bool find(const keyType& key, valueType& result); + bool tqfind(const keyType& key, valueType& result); void setMaxTotalCost(int maxTotalCost); int maxTotalCost() const { return m_maxTotalCost; } @@ -63,7 +63,7 @@ protected: typedef TQValueList<CacheItem> CacheItemList; - typename CacheItemList::iterator find(const keyType& key); + typename CacheItemList::iterator tqfind(const keyType& key); void enforceCostConstraint(); CacheItemList m_items; @@ -74,7 +74,7 @@ protected: template<class keyType, class valueType> void MinOneLRUCache<keyType, valueType>::insert(const keyType& key, const valueType& value, int cost) { - typename CacheItemList::iterator it = find(key); + typename CacheItemList::iterator it = tqfind(key); if(it != m_items.end()) { @@ -91,10 +91,10 @@ void MinOneLRUCache<keyType, valueType>::insert(const keyType& key, const valueT } template<class keyType, class valueType> -bool MinOneLRUCache<keyType, valueType>::find(const keyType& key, valueType& result) +bool MinOneLRUCache<keyType, valueType>::tqfind(const keyType& key, valueType& result) { bool foundKey = false; - typename CacheItemList::iterator it = find(key); + typename CacheItemList::iterator it = tqfind(key); if(it != m_items.end()) { @@ -115,7 +115,7 @@ bool MinOneLRUCache<keyType, valueType>::find(const keyType& key, valueType& res } template<class keyType, class valueType> -typename MinOneLRUCache<keyType, valueType>::CacheItemList::iterator MinOneLRUCache<keyType, valueType>::find(const keyType& key) +typename MinOneLRUCache<keyType, valueType>::CacheItemList::iterator MinOneLRUCache<keyType, valueType>::tqfind(const keyType& key) { typename CacheItemList::iterator it; |