[vlc-commits] [Git][videolan/vlc][master] qt: fix error popup not showing up with Qt 5.15

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Sep 14 10:19:56 UTC 2022



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
83105630 by Pierre Lamot at 2022-09-14T08:19:55+00:00
qt: fix error popup not showing up with Qt 5.15

type was registered twice: as a singleton and as a type. For some reason, this
was still working with older Qt versions

- - - - -


1 changed file:

- modules/gui/qt/maininterface/mainui.cpp


Changes:

=====================================
modules/gui/qt/maininterface/mainui.cpp
=====================================
@@ -260,7 +260,6 @@ void MainUI::registerQMLTypes()
 
         qmlRegisterType<AboutModel>( uri, versionMajor, versionMinor, "AboutModel" );
 
-        qmlRegisterUncreatableType<DialogErrorModel>( uri, versionMajor, versionMinor, "DialogErrorModel", "");
         qmlRegisterType<DialogModel>(uri, versionMajor, versionMinor, "DialogModel");
         qRegisterMetaType<DialogId>();
         qmlRegisterUncreatableType<DialogId>( uri, versionMajor, versionMinor, "DialogId", "");



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/83105630b9dab8d067aa70df2bb31ccf3b352dea

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/83105630b9dab8d067aa70df2bb31ccf3b352dea
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list