From 420485aafa60a9ed46df9b4014074a1423f79dbf Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Aldama Date: Wed, 15 Apr 1998 06:47:33 +0000 Subject: Now using time_t for new and set. Random fixes, as well. 1998-04-15 Arturo Espinosa Aldama * gncal-year-view.[hc]: Now using time_t for new and set. Random fixes, as well. svn path=/trunk/; revision=137 --- calendar/views.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'calendar/views.c') diff --git a/calendar/views.c b/calendar/views.c index a066d789e8..5e09b28754 100644 --- a/calendar/views.c +++ b/calendar/views.c @@ -11,23 +11,23 @@ GtkWidget * day_view_create (GnomeCalendar *gcal) { - return gtk_button_new_with_label ("This is supposed to be the Day View"); + return gtk_label_new ("This is supposed to be the Day View"); } GtkWidget * week_view_create (GnomeCalendar *gcal) { - return gtk_button_new_with_label ("This is supposed to be the Week View"); + return gtk_label_new ("This is supposed to be the Week View"); } GtkWidget * year_view_create (GnomeCalendar *gcal) { - return gtk_button_new_with_label ("This is supposed to be the Year View"); + return gtk_label_new ("This is supposed to be the Year View"); } GtkWidget * tasks_create (GnomeCalendar *gcal) { - return gtk_button_new_with_label ("This is supposed to be the Tasks View"); + return gtk_label_new ("This is supposed to be the Tasks View"); } -- cgit v1.2.3