]> git.sesse.net Git - vlc/blobdiff - modules/misc/gtk_main.c
Remove message unused "queue" parameter
[vlc] / modules / misc / gtk_main.c
index 51cef4ade839610e2bf8309e79c44c22cb6fe74f..f0e0b202e8c5eb83a2f5e9384c39d2366e4c6f6b 100644 (file)
@@ -29,6 +29,7 @@
 #endif
 
 #include <vlc/vlc.h>
+#include <vlc_plugin.h>
 
 
 #include <gtk/gtk.h>
@@ -109,7 +110,7 @@ static int Open( vlc_object_t *p_this )
     /* Launch the gtk_main() thread. It will not return until it has
      * called gdk_threads_enter(), which ensures us thread safety. */
     if( vlc_thread_create( p_gtk_main, "gtk_main", GtkMain,
-                           VLC_THREAD_PRIORITY_LOW, VLC_TRUE ) )
+                           VLC_THREAD_PRIORITY_LOW, true ) )
     {
         vlc_object_release( p_gtk_main );
         i_refcount--;