diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-12-20 15:57:03 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-12-20 15:57:03 +0800 |
commit | 88fd18c50325dec0d2a283f0036ac069cfd58708 (patch) | |
tree | 42a13cec9c9203608721c0dc801fd6ebc4d23fe7 /plugins | |
parent | 319c71b6cf5cf4f756875ecff7bd3b5ab8aad355 (diff) | |
download | gsoc2013-evolution-88fd18c50325dec0d2a283f0036ac069cfd58708.tar.gz gsoc2013-evolution-88fd18c50325dec0d2a283f0036ac069cfd58708.tar.zst gsoc2013-evolution-88fd18c50325dec0d2a283f0036ac069cfd58708.zip |
Setting the correct title. Fixes #324580.
svn path=/trunk/; revision=30892
Diffstat (limited to 'plugins')
-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); |