2
0
mirror of https://github.com/status-im/status-desktop.git synced 2025-01-12 23:35:32 +00:00
2022-10-20 20:34:35 +02:00

13 lines
209 B
C++

#include "cachecleaner.h"
#include <QQmlEngine>
CacheCleaner::CacheCleaner(QQmlEngine* engine)
: engine(engine)
{
}
void CacheCleaner::clearComponentCache() const {
engine->clearComponentCache();
}