From f449bc01e8ca350bd6ed545fa7516ce277099c26 Mon Sep 17 00:00:00 2001 From: Anna Marie Dirks Date: Tue, 27 Mar 2001 20:41:56 +0000 Subject: fixed button placement to comply with gnome standards. 001-03-27 Anna Marie Dirks * gui/e-itip-control.c: fixed button placement to comply with gnome standards. svn path=/trunk/; revision=8983 --- calendar/gui/e-itip-control.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'calendar/gui') 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); } } -- cgit v1.2.3