core/plugin: rename QuickshellPlugin to QsEnginePlugin

Fixes conflict with the autogenerated qml plugin of the same name.
This commit is contained in:
outfoxxed 2024-11-22 18:59:15 -08:00
parent afa1b6f88b
commit 2996e40ff9
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
8 changed files with 27 additions and 27 deletions

View file

@ -42,7 +42,7 @@ EngineGeneration::EngineGeneration(const QDir& rootPath, QmlScanner scanner)
this->engine->addImageProvider("qsimage", new QsImageProvider());
this->engine->addImageProvider("qspixmap", new QsPixmapProvider());
QuickshellPlugin::runConstructGeneration(*this);
QsEnginePlugin::runConstructGeneration(*this);
}
EngineGeneration::~EngineGeneration() {
@ -141,7 +141,7 @@ void EngineGeneration::postReload() {
// This can be called on a generation during its destruction.
if (this->engine == nullptr || this->root == nullptr) return;
QuickshellPlugin::runOnReload();
QsEnginePlugin::runOnReload();
PostReloadHook::postReloadTree(this->root);
this->singletonRegistry.onPostReload();
}