Skip to content

qt: catch early QQmlErrors

Fatih Uzunoğlu requested to merge fuzun/vlc:qt/earlyerrors into master

It appears that Qt QML itself registers QList<QQmlError> meta-type. However, this is done in a stage where there could be QML errors/warnings already generated. If such thing happens, currently, the error is not printed but instead QList<QQmlError> is not registered message shows up.

With early registration, the error/warning is printed.

Merge request reports