Revision: 1861 http://geany.svn.sourceforge.net/geany/?rev=1861&view=rev Author: eht16 Date: 2007-09-07 12:17:02 -0700 (Fri, 07 Sep 2007)
Log Message: ----------- Improved error message if license text could not be found (thanks Frank).
Modified Paths: -------------- trunk/ChangeLog trunk/src/about.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-09-07 19:01:55 UTC (rev 1860) +++ trunk/ChangeLog 2007-09-07 19:17:02 UTC (rev 1861) @@ -5,6 +5,8 @@ src/utils.h, src/ui_utils.h: Remove convert to lower-/upper-case keybindings. Add toggle case keybinding and change shortcut to Ctrl-Alt-U. + * src/about.c: Improved error message if license text could not be + found (thanks Frank).
2007-09-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/src/about.c =================================================================== --- trunk/src/about.c 2007-09-07 19:01:55 UTC (rev 1860) +++ trunk/src/about.c 2007-09-07 19:17:02 UTC (rev 1861) @@ -329,7 +329,7 @@ if (license_text == NULL) { license_text = g_strdup( - _("License text could not be found, please search the web for GPLv2")); + _("License text could not be found, please visit http://www.gnu.org/licenses/gpl-2.0.txt to view it online.")); } tb = gtk_text_view_get_buffer(GTK_TEXT_VIEW(license_textview)); gtk_text_buffer_set_text(tb, license_text, strlen(license_text));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.