plasma: adjust to Katie changes

see 435ef0b6eb4d9cc9da8afceb7c8a1bba1de1df5b in the Katie repo

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-06-11 19:11:42 +03:00
parent 56ca9a4c41
commit de4b524cc0

View file

@ -121,7 +121,11 @@ void DeclarativeWidgetPrivate::scheduleExecutionEnd()
if (component->isReady() || component->isError()) {
finishExecute();
} else {
#if QT_VERSION < 0x041300
QObject::connect(component, SIGNAL(statusChanged(QDeclarativeComponent::Status)), q, SLOT(finishExecute()));
#else
QObject::connect(component, SIGNAL(statusChanged(QDeclarativeComponent::ComponentStatus)), q, SLOT(finishExecute()));
#endif
}
}