Fixed license
authorHarishankar <v.harishankar@gmail.com>
Mon, 11 May 2020 16:51:45 +0000 (22:21 +0530)
committerHarishankar <v.harishankar@gmail.com>
Mon, 11 May 2020 16:51:45 +0000 (22:21 +0530)
Fixed the license text as GTK_LICENSE_BSD_3 does not work properly
in GTK

constantstrings.h
wordblah_player.c

index 8c4c888..8dd4582 100644 (file)
@@ -2,6 +2,8 @@
 #define __CONSTANTSTRINGS_H
 
 #define VERSION  "0.1a"
+#define LICENSE_BSD "Licensed under the BSD 3-clause license \
+https://opensource.org/licenses/BSD-3-Clause"
 #define FROZEN_GRID "Grid is frozen. Unfreeze grid first!"
 #define UNFROZEN_GRID "Grid is unfrozen. Freeze grid first!"
 #define EXCEED_GRID_SIZE "Row/col exceeded grid size!"
index e1c039f..58541f5 100644 (file)
@@ -689,7 +689,8 @@ void on_menu_about_activate (GtkMenuItem *item, gpointer data)
                                                        "comments", COMMENTS,
                                                        "website", WEBSITE,
                                                        "website-label", WEBSITE_LABEL,
-                                                       "license-type", GTK_LICENSE_BSD_3,
+                                                       "license-type", GTK_LICENSE_CUSTOM,
+                                                       "license", LICENSE_BSD
                                                        "version", VERSION,
                                                        (char*)NULL);
 }