aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-itip-control.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2001-03-28 04:41:56 +0800
committerAnna Dirks <anna@src.gnome.org>2001-03-28 04:41:56 +0800
commitf449bc01e8ca350bd6ed545fa7516ce277099c26 (patch)
tree5a6a7b727d50b9c33a44c7a24f1ccc214340d35f /calendar/gui/e-itip-control.c
parent385e0d6441e21e06063710f476ea9f3212041b3f (diff)
downloadgsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.gz
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.bz2
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.lz
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.xz
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.tar.zst
gsoc2013-evolution-f449bc01e8ca350bd6ed545fa7516ce277099c26.zip
fixed button placement to comply with gnome standards.
001-03-27 Anna Marie Dirks <anna@ximian.com> * gui/e-itip-control.c: fixed button placement to comply with gnome standards. svn path=/trunk/; revision=8983
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r--calendar/gui/e-itip-control.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index 668456c13b..5e7df6b35c 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -811,13 +811,13 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream,
if (rsvp) {
GtkWidget *accept_button, *decline_button, *tentative_button;
- accept_button = gtk_button_new_with_label (_("Accept"));
- decline_button = gtk_button_new_with_label (_("Decline"));
- tentative_button = gtk_button_new_with_label (_("Tentative"));
+ accept_button = gtk_button_new_with_label (_(" Accept "));
+ decline_button = gtk_button_new_with_label (_(" Decline "));
+ tentative_button = gtk_button_new_with_label (_(" Tentative "));
- gtk_box_pack_start (GTK_BOX (priv->button_box), accept_button, FALSE, FALSE, 3);
gtk_box_pack_start (GTK_BOX (priv->button_box), decline_button, FALSE, FALSE, 3);
- gtk_box_pack_start (GTK_BOX (priv->button_box), tentative_button, FALSE, FALSE, 3);
+ gtk_box_pack_end (GTK_BOX (priv->button_box), accept_button, FALSE, FALSE, 3);
+ gtk_box_pack_end (GTK_BOX (priv->button_box), tentative_button, FALSE, FALSE, 3);
gtk_signal_connect (GTK_OBJECT (accept_button), "clicked",
GTK_SIGNAL_FUNC (accept_button_clicked_cb), priv);
@@ -827,8 +827,8 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream,
GTK_SIGNAL_FUNC (decline_button_clicked_cb), priv);
gtk_widget_show (accept_button);
- gtk_widget_show (decline_button);
gtk_widget_show (tentative_button);
+ gtk_widget_show (decline_button);
}
}