mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
plasma: adjust to Katie changes
see 435ef0b6eb4d9cc9da8afceb7c8a1bba1de1df5b in the Katie repo Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
56ca9a4c41
commit
de4b524cc0
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue