]> git.eshelyaron.com Git - emacs.git/commitdiff
Check for HAVE_GTK3 instead of a specific version
authorRobert Pluim <rpluim@gmail.com>
Mon, 18 Nov 2019 14:39:54 +0000 (15:39 +0100)
committerRobert Pluim <rpluim@gmail.com>
Mon, 18 Nov 2019 14:49:31 +0000 (15:49 +0100)
Our minimum GTK3 version is 3.10, the font filter functions appeared
in 3.2.

* gtkutil.c (xg_font_filter) [HAVE_GTK3]: Just check for HAVE_GTK3.
(xg_get_font) [HAVE_GTK3]: Same here.

src/gtkutil.c

index c4d2ef9d80b749848c16edfd670a6d155b0d874d..4bab4059c358fec137be2580e87b61f6539609b7 100644 (file)
@@ -2228,7 +2228,7 @@ xg_get_file_name (struct frame *f,
 
 static char *x_last_font_name;
 
-#if GTK_CHECK_VERSION (3, 2, 0)
+#if HAVE_GTK3
 static gboolean
 xg_font_filter (const PangoFontFamily *family,
                 const PangoFontFace *face,
@@ -2262,7 +2262,7 @@ xg_get_font (struct frame *f, const char *default_name)
   w = gtk_font_chooser_dialog_new
     ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
 
-#if GTK_CHECK_VERSION (3, 2, 0)
+#ifdef HAVE_GTK3
   gtk_font_chooser_set_filter_func (GTK_FONT_CHOOSER (w), xg_font_filter, NULL, NULL);
 #endif
   if (default_name)