[evolution] Bug 614644 - Email window's title is blank when subject is blank
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug 614644 - Email window's title is blank when subject is blank
- Date: Wed, 7 Apr 2010 15:35:06 +0000 (UTC)
commit c63a626b5e401da99d499402dc17d535f5724050
Author: Matthew Barnes <mbarnes redhat com>
Date: Wed Apr 7 11:31:22 2010 -0400
Bug 614644 - Email window's title is blank when subject is blank
mail/e-mail-browser.c | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/mail/e-mail-browser.c b/mail/e-mail-browser.c
index 67adeec..a1d6d11 100644
--- a/mail/e-mail-browser.c
+++ b/mail/e-mail-browser.c
@@ -243,6 +243,7 @@ mail_browser_message_selected_cb (EMailBrowser *browser,
CamelMessageInfo *info;
CamelFolder *folder;
EMailReader *reader;
+ const gchar *title;
if (uid == NULL)
return;
@@ -256,9 +257,11 @@ mail_browser_message_selected_cb (EMailBrowser *browser,
if (info == NULL)
return;
- gtk_window_set_title (
- GTK_WINDOW (browser),
- camel_message_info_subject (info));
+ title = camel_message_info_subject (info);
+ if (title == NULL || *title == '\0')
+ title = _("(No Subject)");
+
+ gtk_window_set_title (GTK_WINDOW (browser), title);
gtk_widget_grab_focus (
GTK_WIDGET (((EMFormatHTML *) html_display)->html));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]