aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/views.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/views.c')
-rw-r--r--calendar/views.c8
1 files changed, 4 insertions, 4 deletions
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");
}