diff --git a/ChangeLog b/ChangeLog index a74f22dc86..a25e15ae0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-06-20 Sven Neumann + + * libgimp/gimp.c (gimp_config): fixed error messages. + + * app/widgets/gimpwidgets-utils.c (gimp_message_box): use a + selectable label so you can copy from message dialogs. + 2003-06-20 Michael Natterer Really commit the changes this time: diff --git a/app/file/file-utils.c b/app/file/file-utils.c index 8e35c7da9e..0b3ab52e24 100644 --- a/app/file/file-utils.c +++ b/app/file/file-utils.c @@ -101,7 +101,8 @@ file_utils_filename_to_uri (GSList *procs, } else { - g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE, + g_set_error (error, + G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE, _("Invalid character sequence in URI")); return NULL; } diff --git a/app/widgets/gimpwidgets-utils.c b/app/widgets/gimpwidgets-utils.c index 2c9cf3edc5..a980acb449 100644 --- a/app/widgets/gimpwidgets-utils.c +++ b/app/widgets/gimpwidgets-utils.c @@ -199,6 +199,7 @@ gimp_message_box (const gchar *stock_id, pango_attr_list_unref (attrs); label = gtk_label_new (message); + gtk_label_set_selectable (GTK_LABEL (label), TRUE); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); gtk_widget_show (label); diff --git a/libgimp/gimp.c b/libgimp/gimp.c index 312f3d6809..9b69594838 100644 --- a/libgimp/gimp.c +++ b/libgimp/gimp.c @@ -1422,8 +1422,7 @@ gimp_flush (GIOChannel *channel, } else { - g_warning ("%s: gimp_flush(): error", - g_get_prgname ()); + g_warning ("%s: gimp_flush(): error", g_get_prgname ()); } return FALSE; @@ -1494,7 +1493,7 @@ gimp_config (GPConfig *config) { if (config->version < GP_VERSION) { - g_message ("Could not execute plug-in \"%s\"\n(%s)" + g_message ("Could not execute plug-in \"%s\"\n(%s)\n" "because the GIMP is using an older version of the " "plug-in protocol.", g_get_prgname (), progname); @@ -1502,7 +1501,7 @@ gimp_config (GPConfig *config) } else if (config->version > GP_VERSION) { - g_message ("Could not execute plug-in \"%s\"\n(%s)" + g_message ("Could not execute plug-in \"%s\"\n(%s)\n" "because it uses an obsolete version of the " "plug-in protocol.", g_get_prgname (), progname);