[vlc-commits] gui/qt: Fix build on macOS
Marvin Scholz
git at videolan.org
Tue Aug 21 02:09:38 CEST 2018
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Tue Aug 21 01:55:40 2018 +0200| [1372e6b7bce46349982ae1c638e693dc420a96c7] | committer: Marvin Scholz
gui/qt: Fix build on macOS
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1372e6b7bce46349982ae1c638e693dc420a96c7
---
modules/gui/qt/qt.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/qt.cpp b/modules/gui/qt/qt.cpp
index affdea492b..1128633386 100644
--- a/modules/gui/qt/qt.cpp
+++ b/modules/gui/qt/qt.cpp
@@ -427,7 +427,7 @@ static int Open( vlc_object_t *p_this, bool isDialogProvider )
#ifdef Q_OS_MAC
/* Run mainloop on the main thread as Cocoa requires */
libvlc_SetExitHandler( p_intf->obj.libvlc, Abort, p_intf );
- thread( (void *)p_intf );
+ Thread( (void *)p_intf );
#else
if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) )
{
More information about the vlc-commits
mailing list