aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-07-01 06:52:59 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-01 06:52:59 +0800
commit3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e (patch)
tree168758e942d3627c35a9d871bf11b62bfa590320 /composer
parent6ae3f35ec34b4b2c35c4500a64651ac8874cad0e (diff)
downloadgsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar.gz
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar.bz2
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar.lz
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar.xz
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.tar.zst
gsoc2013-evolution-3fb1708c2cae2011fd44f1a1fcb953f0e859cc7e.zip
changed "Exit" to "Close" in the File menu
svn path=/trunk/; revision=3838
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog2
-rw-r--r--composer/e-msg-composer.c16
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;