From 3e6b832283ba238fe48cb2ee545a522cff1fd5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jir=CC=8Ci=CC=81=20Techet?= Date: Sat, 19 Aug 2023 11:35:44 +0200 Subject: [PATCH] quartz: fix compilation problem introduced by !5648 Including plain "gdkquartz.h" ends with compilation error: ``` ../gtk/gtkfilechoosernativequartz.c:43:10: fatal error: 'gdkquartz.h' file not found #include "gdkquartz.h" ^~~~~~~~~~~~~ 1 error generated. ``` --- gtk/gtkfilechoosernativequartz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkfilechoosernativequartz.c b/gtk/gtkfilechoosernativequartz.c index 2e1b3b6826..cd86485628 100644 --- a/gtk/gtkfilechoosernativequartz.c +++ b/gtk/gtkfilechoosernativequartz.c @@ -40,7 +40,7 @@ #include "gtklabel.h" #include "gtkfilechooserentry.h" #include "gtkfilefilterprivate.h" -#include "gdkquartz.h" +#include #include #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060