diff options
-rw-r--r-- | composer/ChangeLog | 2 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 16 |
2 files changed, 7 insertions, 11 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 82166e587b..c30e85aeba 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -2,7 +2,7 @@ * e-msg-composer.c: Changed "Exit" to "Close" in the File menu. This is a little more intuitive as it does not suggest exiting - the application, just says "close this window" + the application, just says "close this window". 2000-06-26 Christopher James Lahey <clahey@helixcode.com> diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index e4d389a3de..06363a0eb5 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -582,9 +582,9 @@ save_as_cb (GtkWidget *widget, } static void -send_cb (GtkWidget *widget, - gpointer data) +send_cb (GtkWidget *widget, gpointer data) { + /* FIXME: We should really write this to Outbox in the future? */ gtk_signal_emit (GTK_OBJECT (data), signals[SEND]); } @@ -608,28 +608,24 @@ exit_cb (GtkWidget *widget, gpointer data) } static void -menu_view_attachments_activate_cb (GtkWidget *widget, - gpointer data) +menu_view_attachments_activate_cb (GtkWidget *widget, gpointer data) { e_msg_composer_show_attachments (E_MSG_COMPOSER (data), GTK_CHECK_MENU_ITEM (widget)->active); } static void -toolbar_view_attachments_clicked_cb (GtkWidget *widget, - gpointer data) +toolbar_view_attachments_clicked_cb (GtkWidget *widget, gpointer data) { EMsgComposer *composer; composer = E_MSG_COMPOSER (data); - e_msg_composer_show_attachments (composer, - ! composer->attachment_bar_visible); + e_msg_composer_show_attachments (composer, !composer->attachment_bar_visible); } static void -add_attachment_cb (GtkWidget *widget, - gpointer data) +add_attachment_cb (GtkWidget *widget, gpointer data) { EMsgComposer *composer; |