mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
8981b8615a
Closes: #7975
13 lines
209 B
C++
13 lines
209 B
C++
#include "cachecleaner.h"
|
|
|
|
#include <QQmlEngine>
|
|
|
|
CacheCleaner::CacheCleaner(QQmlEngine* engine)
|
|
: engine(engine)
|
|
{
|
|
}
|
|
|
|
void CacheCleaner::clearComponentCache() const {
|
|
engine->clearComponentCache();
|
|
}
|