summaryrefslogtreecommitdiffstats
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 @@
#define RBFONTCACHE_H
#include <QHash>
+#include <QVariant>
class RBFontCache
{
@@ -39,6 +40,7 @@ public:
static CacheInfo* lookup(QString key){ return cache.value(key, 0); }
static void insert(QString key, CacheInfo* data){ cache.insert(key, data); }
+ static void clearCache();
private:
static QHash<QString, CacheInfo*> cache;