From 5c46099b8daf7a4464e7d90777eebea1c35e58b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Thu, 21 Apr 2022 11:43:55 +0200 Subject: [PATCH] gst-examples: change include for gtk in gtk-play The gdk.h is not necessary but the gtk.h yes for the GTK_CHECK_VERSION macro. Part-of: --- subprojects/gst-examples/playback/player/gtk/gtk-play.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/subprojects/gst-examples/playback/player/gtk/gtk-play.c b/subprojects/gst-examples/playback/player/gtk/gtk-play.c index b38d50285f..985786f3ca 100644 --- a/subprojects/gst-examples/playback/player/gtk/gtk-play.c +++ b/subprojects/gst-examples/playback/player/gtk/gtk-play.c @@ -26,7 +26,8 @@ #include #include -#include +#include + #if defined (GDK_WINDOWING_X11) #include #elif defined (GDK_WINDOWING_WIN32) @@ -39,8 +40,6 @@ NSView *gdk_quartz_window_get_nsview (GdkWindow * window); #endif #endif -#include - #include #include "gtk-video-renderer.h"