Index: xfcalendar/src/about-xfcalendar.c =================================================================== RCS file: /cvsroot/xfce/xfce4/xfcalendar/src/about-xfcalendar.c,v retrieving revision 1.4 diff -u -u -b -B -t -w -r1.4 about-xfcalendar.c --- xfcalendar/src/about-xfcalendar.c 23 Jul 2004 22:07:14 -0000 1.4 +++ xfcalendar/src/about-xfcalendar.c 26 Sep 2004 06:38:37 -0000 @@ -33,6 +33,8 @@ GdkPixbuf *xfcalendar_logo = xfce_themed_icon_load ("xfcalendar", 48); + GtkWidget *dialog = NULL; + XfceAboutInfo *about = xfce_about_info_new("Xfcalendar", VERSION, _("Manage your time with Xfce4"), @@ -57,7 +59,7 @@ "edscott@imp.mx", _("Contributor")); - GtkWidget *dialog = xfce_about_dialog_new(GTK_WINDOW(xfcal->mWindow), + dialog = xfce_about_dialog_new(GTK_WINDOW(xfcal->mWindow), about, xfcalendar_logo); Index: xfcalendar/src/mainbox.c =================================================================== RCS file: /cvsroot/xfce/xfce4/xfcalendar/src/mainbox.c,v retrieving revision 1.8 diff -u -u -b -B -t -w -r1.8 mainbox.c --- xfcalendar/src/mainbox.c 15 Sep 2004 20:54:12 -0000 1.8 +++ xfcalendar/src/mainbox.c 26 Sep 2004 06:38:37 -0000 @@ -536,6 +536,7 @@ (gpointer) xfcal, //(gpointer) xfcal->mWindow, NULL); + { /* Remember which day we are */ struct tm *t; @@ -545,5 +546,6 @@ t=localtime(&tt); g_snprintf(today, 8, "%03d%02d%02d", t->tm_year, t->tm_mon, t->tm_mday); + } return xfcal; }