aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-timezone-entry.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-04-23 05:15:41 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-04-23 05:15:41 +0800
commitf58154d28e8bd4ab287a31f419db93ac4c24fb60 (patch)
treefc96e2b00ead71ccb49fea2116aa27d6aea845a8 /calendar/gui/e-timezone-entry.c
parentc43e7c7ab7a428bdd306e12d1dfd9a499d80451e (diff)
downloadgsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar.gz
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar.bz2
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar.lz
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar.xz
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.tar.zst
gsoc2013-evolution-f58154d28e8bd4ab287a31f419db93ac4c24fb60.zip
Fixes part of #41148, #41216 and #41235
2003-04-22 Rodrigo Moya <rodrigo@ximian.com> Fixes part of #41148, #41216 and #41235 * gui/e-itip-control.c (init): * gui/e-meeting-time-sel.c (e_meeting_time_selector_construct, e_meeting_time_selector_add_key_color): * gui/e-timezone-entry.c (e_timezone_entry_init): * gui/gnome-cal.c (setup_widgets): * gui/tasks-control.c (confirm_expunge): * gui/dialogs/comp-editor.c (setup_widgets): * gui/dialogs/e-delegate-dialog.c (e_delegate_dialog_construct): * gui/dialogs/meeting-page.c (meeting_page_construct): * gui/dialogs/recurrence-page.c (make_weekly_special, make_monthly_special, make_ending_count_special): * gui/dialogs/schedule-page.c (schedule_page_construct): use HIG-suggested spacing. svn path=/trunk/; revision=20927
Diffstat (limited to 'calendar/gui/e-timezone-entry.c')
-rw-r--r--calendar/gui/e-timezone-entry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c
index e439fe2273..6d514ccc93 100644
--- a/calendar/gui/e-timezone-entry.c
+++ b/calendar/gui/e-timezone-entry.c
@@ -125,13 +125,13 @@ e_timezone_entry_init (ETimezoneEntry *tentry)
priv->entry = gtk_entry_new ();
gtk_entry_set_editable (GTK_ENTRY (priv->entry), FALSE);
/*gtk_widget_set_usize (priv->date_entry, 90, 0);*/
- gtk_box_pack_start (GTK_BOX (tentry), priv->entry, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (tentry), priv->entry, TRUE, TRUE, 6);
gtk_widget_show (priv->entry);
g_signal_connect (priv->entry, "changed", G_CALLBACK (on_entry_changed), tentry);
priv->button = gtk_button_new ();
g_signal_connect (priv->button, "clicked", G_CALLBACK (on_button_clicked), tentry);
- gtk_box_pack_start (GTK_BOX (tentry), priv->button, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (tentry), priv->button, FALSE, FALSE, 6);
gtk_widget_show (priv->button);
colormap = gtk_widget_get_colormap (priv->button);