core/reloader: fix incubator warnings

This commit is contained in:
outfoxxed 2024-11-29 01:36:07 -08:00
parent 8882f7ca50
commit cb05e9a327
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
2 changed files with 54 additions and 48 deletions

View file

@ -5,7 +5,6 @@
#include <qfilesystemwatcher.h>
#include <qhash.h>
#include <qobject.h>
#include <qpair.h>
#include <qqmlengine.h>
#include <qqmlincubator.h>
#include <qtclasshelpermacros.h>
@ -84,7 +83,8 @@ private slots:
private:
void postReload();
void assignIncubationController();
QVector<QPair<QQmlIncubationController*, QObject*>> incubationControllers;
QVector<QQmlIncubationController*> incubationControllers;
bool incubationControllersLocked = false;
QHash<const void*, EngineGenerationExt*> extensions;
bool destroying = false;