diff options
author | Arturo Espinosa Aldama <arturo@nuclecu.unam.mx> | 1998-04-15 14:47:33 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-15 14:47:33 +0800 |
commit | 420485aafa60a9ed46df9b4014074a1423f79dbf (patch) | |
tree | 6d8f5b7af3197baa5911648f64e109528eea290a /calendar/views.c | |
parent | ca50d9fad97731aefa9bca4075ba6f655c6e742e (diff) | |
download | gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar.gz gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar.bz2 gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar.lz gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar.xz gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.tar.zst gsoc2013-evolution-420485aafa60a9ed46df9b4014074a1423f79dbf.zip |
Now using time_t for new and set. Random fixes, as well.
1998-04-15 Arturo Espinosa Aldama <arturo@nuclecu.unam.mx>
* gncal-year-view.[hc]: Now using time_t for new and set.
Random fixes, as well.
svn path=/trunk/; revision=137
Diffstat (limited to 'calendar/views.c')
-rw-r--r-- | calendar/views.c | 8 |
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"); } |