From 45abc2cbefa6d1dfafeb6a8351c35d5c841f87c8 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 22 Apr 1998 00:16:43 +0000 Subject: Lots of changes: Lots of changes: 1998-04-21 Miguel de Icaza 1. gEdit got Gnomified: gnome-stock, gnome-app, i18n tretment + integration into gnome-utils compilation. Original configure.in is still there for Alex/Evans to redistribute as Gtk App (I tried to ifdef gnome code). 2. gHex: warning fixes + crash fixes + i18n fixes. 3. GnCal: week view shows date range (needs some fixing); changed the day view order; other stuff I dont remember 4. GTop: more i18n treatmnet. 5. Updated Spanish translation. svn path=/trunk/; revision=178 --- calendar/gui/gncal-day-panel.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'calendar/gui/gncal-day-panel.c') diff --git a/calendar/gui/gncal-day-panel.c b/calendar/gui/gncal-day-panel.c index d546cda34f..099b02f384 100644 --- a/calendar/gui/gncal-day-panel.c +++ b/calendar/gui/gncal-day-panel.c @@ -96,7 +96,7 @@ gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day) w = gtk_label_new (""); dpanel->date_label = GTK_LABEL (w); gtk_table_attach (GTK_TABLE (dpanel), w, - 1, 2, 0, 1, + 0, 1, 0, 1, GTK_FILL | GTK_SHRINK, GTK_FILL | GTK_SHRINK, 0, 0); @@ -110,7 +110,7 @@ gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day) GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_table_attach (GTK_TABLE (dpanel), w, - 1, 2, 1, 3, + 0, 1, 1, 3, GTK_EXPAND | GTK_FILL | GTK_SHRINK, GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0); @@ -140,7 +140,7 @@ gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day) (GtkSignalFunc) calendar_day_selected, dpanel); gtk_table_attach (GTK_TABLE (dpanel), w, - 0, 1, 1, 2, + 1, 2, 1, 2, GTK_FILL | GTK_SHRINK, GTK_FILL | GTK_SHRINK, 0, 0); @@ -151,7 +151,7 @@ gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day) w = gtk_button_new_with_label ("TODO"); dpanel->todo_list = w; gtk_table_attach (GTK_TABLE (dpanel), w, - 0, 1, 2, 3, + 1, 2, 2, 3, GTK_FILL | GTK_SHRINK, GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0); -- cgit