From: Paul Mangan Date: Mon, 25 Jun 2001 15:10:44 +0000 (+0000) Subject: fixed 'compose news' bug in icon-and-text toolbar X-Git-Tag: VERSION_0_5_0~51 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=dd1a2a1efb0e18db2cfff86ac3c0a4227a0f3f03;hp=fa74e83dcf97c5520a0f571bf7ee3cc37838b817 fixed 'compose news' bug in icon-and-text toolbar --- diff --git a/ChangeLog.claws b/ChangeLog.claws index f66b08e2b..18ff713cb 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2001-06-25 [paul] + + * src/mainwindow.c + fixed 'compose news article' bug + from icon-and-text toolbar + 2001-06-25 [paul] * sync with sylpheed 0.5.0pre2 release diff --git a/src/mainwindow.c b/src/mainwindow.c index 8642e7308..b13809522 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -1703,7 +1703,11 @@ static void main_window_toolbar_create(MainWindow *mainwin, gtk_signal_connect(GTK_OBJECT(compose_mail_btn), "clicked", GTK_SIGNAL_FUNC(toolbar_compose_cb), mainwin); - + + gtk_signal_connect(GTK_OBJECT(compose_news_btn), "clicked", + GTK_SIGNAL_FUNC(toolbar_compose_cb), + mainwin); + mainwin->toolbar = toolbar; mainwin->get_btn = get_btn; mainwin->getall_btn = getall_btn;