mirror of https://github.com/GNOME/gimp.git
set the new "wrap-license" property on GtkAboutDialog and remove the
2005-12-28 Michael Natterer <mitch@gimp.org> * app/dialogs/about-dialog.c: set the new "wrap-license" property on GtkAboutDialog and remove the explicit newlines from the string holding the GPL.
This commit is contained in:
parent
a01d0f7e88
commit
338c785181
|
@ -1,3 +1,9 @@
|
||||||
|
2005-12-28 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* app/dialogs/about-dialog.c: set the new "wrap-license" property
|
||||||
|
on GtkAboutDialog and remove the explicit newlines from the string
|
||||||
|
holding the GPL.
|
||||||
|
|
||||||
2005-12-28 Michael Natterer <mitch@gimp.org>
|
2005-12-28 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/widgets/gimpwidgets-utils.[ch]: removed
|
* app/widgets/gimpwidgets-utils.[ch]: removed
|
||||||
|
|
|
@ -41,21 +41,21 @@
|
||||||
"Copyright (C) 1995-2005\n" \
|
"Copyright (C) 1995-2005\n" \
|
||||||
"Spencer Kimball, Peter Mattis and the GIMP Development Team"
|
"Spencer Kimball, Peter Mattis and the GIMP Development Team"
|
||||||
|
|
||||||
/* FIXME: let GTK+ do the wrapping (requires GTK+ 2.8) */
|
|
||||||
#define LICENSE \
|
#define LICENSE \
|
||||||
"This program is free software; you can redistribute it and/or modify\n" \
|
"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\n" \
|
"it under the terms of the GNU General Public License as published by " \
|
||||||
"the Free Software Foundation; either version 2 of the License, or\n" \
|
"the Free Software Foundation; either version 2 of the License, or " \
|
||||||
"(at your option) any later version.\n" \
|
"(at your option) any later version.\n" \
|
||||||
"\n" \
|
"\n" \
|
||||||
"This program is distributed in the hope that it will be useful,\n" \
|
"This program is distributed in the hope that it will be useful, " \
|
||||||
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" \
|
"but WITHOUT ANY WARRANTY; without even the implied warranty of " \
|
||||||
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" \
|
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. " \
|
||||||
"See the GNU General Public License for more details.\n" \
|
"See the GNU General Public License for more details.\n" \
|
||||||
"\n" \
|
"\n" \
|
||||||
"You should have received a copy of the GNU General Public License\n" \
|
"You should have received a copy of the GNU General Public License " \
|
||||||
"along with this program; if not, write to the Free Software\n" \
|
"along with this program; if not, write to the Free Software " \
|
||||||
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
|
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, " \
|
||||||
|
"USA."
|
||||||
|
|
||||||
#define NAME "GIMP"
|
#define NAME "GIMP"
|
||||||
#define COMMENTS _("GNU Image Manipulation Program")
|
#define COMMENTS _("GNU Image Manipulation Program")
|
||||||
|
@ -144,6 +144,7 @@ about_dialog_create (GimpContext *context)
|
||||||
"copyright", COPYRIGHT,
|
"copyright", COPYRIGHT,
|
||||||
"comments", COMMENTS,
|
"comments", COMMENTS,
|
||||||
"license", LICENSE,
|
"license", LICENSE,
|
||||||
|
"wrap-license", TRUE,
|
||||||
"website", WEBSITE,
|
"website", WEBSITE,
|
||||||
"website-label", WEBSITE_LABEL,
|
"website-label", WEBSITE_LABEL,
|
||||||
"authors", authors,
|
"authors", authors,
|
||||||
|
|
Loading…
Reference in New Issue