From e2d83802a036c68ff9d7dc96a074f3b11a023249 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Fri, 19 Jun 2015 15:52:47 +0200 Subject: QPixmapCache: remove unused Q_TEST_QPIXMAPCACHE-only function Unused by tst_qpixmapcache.cpp and everything else, and uses an inefficient QList, so remove. Change-Id: Ia410ed19db9bb3db97460b21bc2fd9d53c95a73d Reviewed-by: Olivier Goffart (Woboq GmbH) --- src/gui/image/qpixmapcache.cpp | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/gui/image/qpixmapcache.cpp') diff --git a/src/gui/image/qpixmapcache.cpp b/src/gui/image/qpixmapcache.cpp index f9c362e194..472aa469c3 100644 --- a/src/gui/image/qpixmapcache.cpp +++ b/src/gui/image/qpixmapcache.cpp @@ -179,7 +179,6 @@ public: static QPixmapCache::KeyData* getKeyData(QPixmapCache::Key *key); - QList< QPair > allPixmaps() const; bool flushDetachedPixmaps(bool nt); private: @@ -423,20 +422,6 @@ QPixmapCache::KeyData* QPMCache::getKeyData(QPixmapCache::Key *key) return key->d; } -QList< QPair > QPMCache::allPixmaps() const -{ - QList< QPair > r; - QHash::const_iterator it = cacheKeys.begin(); - while (it != cacheKeys.end()) { - QPixmap *ptr = QCache::object(it.value()); - if (ptr) - r.append(QPair(it.key(),*ptr)); - ++it; - } - return r; -} - - Q_GLOBAL_STATIC(QPMCache, pm_cache) int Q_AUTOTEST_EXPORT q_QPixmapCache_keyHashSize() @@ -656,9 +641,4 @@ int QPixmapCache::totalUsed() return (pm_cache()->totalCost()+1023) / 1024; } -QList< QPair > QPixmapCache::allPixmaps() -{ - return pm_cache()->allPixmaps(); -} - QT_END_NAMESPACE -- cgit v1.2.3