talkatu/talkatu

Fix deprecation warning with GLib 2.74

18 months ago, Elliott Sales de Andrade
c4adcdeeb135
Parents e56cc1209e15
Children 2cd429762a7d
Fix deprecation warning with GLib 2.74

Testing Done:
Compiled only.

Reviewed at https://reviews.imfreedom.org/r/2013/
--- a/demo/talkatudemo.c Thu Oct 06 22:48:33 2022 -0500
+++ b/demo/talkatudemo.c Thu Nov 03 03:29:05 2022 -0500
@@ -86,7 +86,11 @@
textdomain(GETTEXT_PACKAGE);
app = gtk_application_new("org.imfreedom.keep.talkatu.TalkatuDemo",
+#if GLIB_CHECK_VERSION(2,74,0)
+ G_APPLICATION_DEFAULT_FLAGS);
+#else
G_APPLICATION_FLAGS_NONE);
+#endif
g_application_add_main_option_entries(G_APPLICATION(app), entries);
g_signal_connect(app, "handle-local-options",