From 38dfe9d2f7aea4ecfe06ec54fef6f5b5fe1f72e4 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Tue, 17 May 2022 18:18:32 +0800 Subject: [PATCH] Fix unused function warning on X * src/xsettings.c (xg_settings_key_valid_p): Surround with HAVE_PGTK and HAVE_GSETTINGS. --- src/xsettings.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xsettings.c b/src/xsettings.c index 45341d8ebd5..c29a844e0a8 100644 --- a/src/xsettings.c +++ b/src/xsettings.c @@ -230,6 +230,8 @@ static cairo_font_options_t *font_options; static GSettings *gsettings_client; +#if defined HAVE_PGTK && defined HAVE_GSETTINGS + static bool xg_settings_key_valid_p (GSettings *settings, const char *key) { @@ -253,6 +255,8 @@ xg_settings_key_valid_p (GSettings *settings, const char *key) #endif } +#endif + #ifdef HAVE_PGTK /* Store an event for re-rendering of the fonts. */ static void -- 2.39.2