Rodrigo, I cannot find your prior approve mail :( Anyway, thanks a lot! Patch has been checked into both 1.4 branch and HEAD. Harry Rodrigo Moya wrote: On Thu, 2003-11-13 at 03:37, Harry Lu wrote:Rodrigo, Ping... :) Thanks! HarryIIRC I already approved this patch. Anyway, it looks ok. cheersHarry Lu wrote:Rodrigo and JPR, Here is a simple patch for Calendar event's recurrence tab based on 1.4 branch. Please review it. After your review, I will commit it to HEAD, too. Thanks! Harry ____________________________________________________________________ Index: calendar//ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v retrieving revision 1.1802.2.36 diff -u -r1.1802.2.36 ChangeLog --- calendar//ChangeLog 3 Nov 2003 02:58:28 -0000 1.1802.2.36 +++ calendar//ChangeLog 11 Nov 2003 09:04:34 -0000 @@ -1,3 +1,8 @@ +2003-11-11 Harry Lu <harry lu sun com> + + * gui/dialogs/recurrence-page.c (make_ending_count_special): + Make ending count of occurrences of Recurrence tab numeric only. + 2003-10-31 Harry Lu <harry lu sun com> Fix for #50387. Index: calendar//gui/dialogs/recurrence-page.c =================================================================== RCS file: /cvs/gnome/evolution/calendar/gui/dialogs/recurrence-page.c,v retrieving revision 1.46 diff -u -r1.46 recurrence-page.c --- calendar//gui/dialogs/recurrence-page.c 22 Apr 2003 21:15:41 -0000 1.46 +++ calendar//gui/dialogs/recurrence-page.c 11 Nov 2003 09:04:36 -0000 @@ -1351,6 +1351,7 @@ adj = GTK_ADJUSTMENT (gtk_adjustment_new (1, 1, 10000, 1, 10, 10)); priv->ending_count_spin = gtk_spin_button_new (adj, 1, 0); + gtk_spin_button_set_numeric ((GtkSpinButton *)priv->ending_count_spin, TRUE); gtk_box_pack_start (GTK_BOX (hbox), priv->ending_count_spin, FALSE, FALSE, 6); |