format: Make fmt_check() easier to translate.
[pspp] / src / ui / gui / psppire-var-sheet-header.c
index 01743a12673249d07a98e7b85a7949327fc5f5dc..c40b0aa381692099bbd8bb32adcdd7a9bc0489ed 100644 (file)
@@ -1,5 +1,5 @@
 /*  PSPPIRE - a graphical user interface for PSPP.
-    Copyright (C) 2016  John Darrington
+    Copyright (C) 2016  Free Software Foundation
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -47,7 +47,7 @@ static gpointer
 gi (GListModel *list, guint position)
 {
   GtkWidget *button = gtk_button_new ();
-  gchar *text = NULL;
+  const gchar *text = NULL;
 
   switch (position)
     {
@@ -90,7 +90,7 @@ gi (GListModel *list, guint position)
 
   if (text)
     gtk_button_set_label (GTK_BUTTON (button), gettext (text));
-  
+
   return button;
 }