From 3204698fe8bd4943ad6658d367de0c185c58c0d1 Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.eu> Date: Mon, 1 Jan 2018 13:08:54 +0000 Subject: [PATCH] Fix a string which shouldn't have been static Closes #3 --- src/rugby-application.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rugby-application.c b/src/rugby-application.c index 96c8b4e..6185734 100644 --- a/src/rugby-application.c +++ b/src/rugby-application.c @@ -25,7 +25,7 @@ about_activated (GSimpleAction *simple, GtkApplication *app = GTK_APPLICATION (user_data); GtkWindow *window = gtk_application_get_active_window (app); - static const gchar *authors[] = { "Bruce Cowan", NULL }; + const gchar *authors[] = { "Bruce Cowan", NULL }; g_autoptr (GDateTime) date = g_date_time_new_now_local (); gint year = g_date_time_get_year (date); g_autofree gchar *copyright = g_strdup_printf ("Copyright © 2012–%d Bruce Cowan", -- GitLab