diff options
Diffstat (limited to 'utils/themeeditor/graphics/rbfontcache.h')
| -rw-r--r-- | utils/themeeditor/graphics/rbfontcache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbfontcache.h b/utils/themeeditor/graphics/rbfontcache.h index 50a6d2e..62d82b7 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; |