summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics/rbfontcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics/rbfontcache.h')
-rw-r--r--utils/themeeditor/graphics/rbfontcache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbfontcache.h b/utils/themeeditor/graphics/rbfontcache.h
index 50a6d2ec48..62d82b7188 100644
--- a/utils/themeeditor/graphics/rbfontcache.h
+++ b/utils/themeeditor/graphics/rbfontcache.h
@@ -23,6 +23,7 @@
23#define RBFONTCACHE_H 23#define RBFONTCACHE_H
24 24
25#include <QHash> 25#include <QHash>
26#include <QVariant>
26 27
27class RBFontCache 28class RBFontCache
28{ 29{
@@ -39,6 +40,7 @@ public:
39 40
40 static CacheInfo* lookup(QString key){ return cache.value(key, 0); } 41 static CacheInfo* lookup(QString key){ return cache.value(key, 0); }
41 static void insert(QString key, CacheInfo* data){ cache.insert(key, data); } 42 static void insert(QString key, CacheInfo* data){ cache.insert(key, data); }
43 static void clearCache();
42 44
43private: 45private:
44 static QHash<QString, CacheInfo*> cache; 46 static QHash<QString, CacheInfo*> cache;