diff options
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-folder-subscription.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 50ce733522..643f3daac7 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2005-12-20 Sushma Rai <rsushma@novell.com> + + * exchange-folder-subscription.c (create_folder_subscription_dialog): + Setting the correct title. Fixes #324580. + 2005-12-19 Sushma Rai <rsushma@novell.com> * exchange-delegates-user.c (exchange_delegates_user_edit): Using the diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c index ad7c8aae01..c9477e57a7 100644 --- a/plugins/exchange-operations/exchange-folder-subscription.c +++ b/plugins/exchange-operations/exchange-folder-subscription.c @@ -177,7 +177,8 @@ create_folder_subscription_dialog (gchar *mail_account, gchar *fname, gchar **us dialog = glade_xml_get_widget (glade_xml, "dialog"); g_return_val_if_fail (dialog != NULL, FALSE); - gtk_window_set_title (GTK_WINDOW (dialog), g_strdup_printf ("%s %s", _("Subscribe to Other User's"), fname)); + gtk_window_set_modal (GTK_WINDOW (dialog), FALSE); + gtk_window_set_title (GTK_WINDOW (dialog), _("Subscribe to Other User's Folder")); name_selector_widget = setup_name_selector (glade_xml, &name_selector); gtk_widget_grab_focus (name_selector_widget); |