Skip to content
Snippets Groups Projects
Commit 3204698f authored by Bruce Cowan's avatar Bruce Cowan
Browse files

Fix a string which shouldn't have been static

Closes #3
parent 7b1c0598
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment