From: Scott Worley Date: Fri, 24 Feb 2023 18:03:02 +0000 (-0800) Subject: Use the deprecated G_APPLICATION_FLAGS_NONE. :( X-Git-Url: http://git.scottworley.com/batteryviewer/commitdiff_plain/0a969968e381120d4f88175b05178782e320c00a?hp=ad6194dafdb57ad332f1d29bc505c605dea9bc57 Use the deprecated G_APPLICATION_FLAGS_NONE. :( --- diff --git a/Makefile b/Makefile index bfda2be..f9d8876 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -RECOMMENDED_CFLAGS = -Wall -Wextra -pedantic -Werror -O +RECOMMENDED_CFLAGS = -Wall -Wextra -pedantic -O CFLAGS = $(RECOMMENDED_CFLAGS) prefix = /usr/local exec_prefix = $(prefix) diff --git a/batteryviewer.c b/batteryviewer.c index 798cddc..37b6e00 100644 --- a/batteryviewer.c +++ b/batteryviewer.c @@ -125,8 +125,11 @@ int main(int argc, char **argv) { .current_filename = sasprintf("%s/current_now", battery_dir), }; - GtkApplication *app = gtk_application_new("com.scottworley.batteryviewer", - G_APPLICATION_DEFAULT_FLAGS); + GtkApplication *app = gtk_application_new( + "com.scottworley.batteryviewer", + // G_APPLICATION_FLAGS_NONE is deprecated, but + // G_APPLICATION_DEFAULT_FLAGS isn't available on Stable Debian yet. + G_APPLICATION_FLAGS_NONE); g_signal_connect(app, "activate", G_CALLBACK(activate), &state); int status = g_application_run(G_APPLICATION(app), argc, argv); g_object_unref(app);