From 4f00a803a94b87f6a6ba147b6b0be77fa24e2af7 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Tue, 9 Dec 2008 16:59:36 +0000 Subject: [PATCH] 2008-12-09 [paul] 3.6.1cvs67 * src/messageview.c ensure that any stray noticeview buttons are hidden, as clicking them causes segfaults! --- ChangeLog | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/messageview.c | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0173e9f26..d9f18b22f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-12-09 [paul] 3.6.1cvs67 + + * src/messageview.c + ensure that any stray noticeview buttons are hidden, + as clicking them causes segfaults! + 2008-12-09 [colin] 3.6.1cvs66 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index c8220005c..9f67f6ec4 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3648,3 +3648,4 @@ ( cvs diff -u -r 1.59.2.74 -r 1.59.2.75 src/prefs_filtering.c; ) > 3.6.1cvs64.patchset ( cvs diff -u -r 1.94.2.192 -r 1.94.2.193 src/messageview.c; ) > 3.6.1cvs65.patchset ( cvs diff -u -r 1.382.2.488 -r 1.382.2.489 src/compose.c; cvs diff -u -r 1.50.2.51 -r 1.50.2.52 src/compose.h; cvs diff -u -r 1.2.2.19 -r 1.2.2.20 src/folder_item_prefs.h; cvs diff -u -r 1.204.2.183 -r 1.204.2.184 src/prefs_common.c; cvs diff -u -r 1.103.2.119 -r 1.103.2.120 src/prefs_common.h; cvs diff -u -r 1.9.2.46 -r 1.9.2.47 src/common/defs.h; ) > 3.6.1cvs66.patchset +( cvs diff -u -r 1.94.2.193 -r 1.94.2.194 src/messageview.c; ) > 3.6.1cvs67.patchset diff --git a/configure.ac b/configure.ac index 2cc81981a..68cddc1da 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=6 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=66 +EXTRA_VERSION=67 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/messageview.c b/src/messageview.c index 7c96aaeb6..912da8417 100644 --- a/src/messageview.c +++ b/src/messageview.c @@ -1193,6 +1193,8 @@ gint messageview_show(MessageView *messageview, MsgInfo *msginfo, noticeview_set_icon(messageview->noticeview, STOCK_PIXMAP_NOTICE_WARN); noticeview_set_text(messageview->noticeview, text); + gtk_widget_hide(messageview->noticeview->button); + gtk_widget_hide(messageview->noticeview->button2); g_free(text); break; } -- 2.25.1