diff options
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary-preferences.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 83a89e2dcb..c7d749cc18 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,8 @@ +2001-07-18 Iain Holmes <iain@ximian.com> + + * e-summary-preferences.c (e_summary_configure): Set the title on the + window. Just do a g_return_if_fail if the XML file couldn't be loaded. + 2001-07-16 Iain Holmes <iain@ximian.com> * e-summary-rdf.c (display_doc): Nicer error reporting. diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c index 24160fe28d..e681884af5 100644 --- a/my-evolution/e-summary-preferences.c +++ b/my-evolution/e-summary-preferences.c @@ -1381,6 +1381,7 @@ e_summary_configure (GtkWidget *widget, pd->xml = glade_xml_new (EVOLUTION_GLADEDIR "/my-evolution.glade", NULL); g_assert (pd->xml != NULL); /* Fixme: Nice GUI to explain what happened */ pd->box = GNOME_PROPERTY_BOX (glade_xml_get_widget (pd->xml, "dialog1")); + gtk_window_set_title (GTK_WINDOW (pd->box), _("My Evolution Settings")); if (make_property_dialog (pd) == FALSE) { g_warning ("Missing some part of XML file"); free_property_dialog (pd); |