Skip to content

qt: fix lua interface extension not loading

Pierre Lamot requested to merge chub/vlc:qt/lua-ext-bad-signal into master

extension_dialog_t is not a registered type in qt so the signal was failing.

It's usually dangerous to pass VLC C object in Qt signals regarding the lifetime of these objects, so rather than registering the type, the object is passed though lambda capture assuming that the current comment and code is correct.

Merge request reports