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/year-view.h | |
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/year-view.h')
-rw-r--r-- | calendar/year-view.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/calendar/year-view.h b/calendar/year-view.h index 1aedf41299..bdd542abda 100644 --- a/calendar/year-view.h +++ b/calendar/year-view.h @@ -11,10 +11,12 @@ #ifndef YEAR_VIEW_H #define YEAR_VIEW_H - +#include <time.h> #include <gtk/gtktable.h> #include <libgnome/gnome-defs.h> #include <libgnomeui/gtkcalendar.h> + +#include "calendar.h" #include "gnome-cal.h" BEGIN_GNOME_DECLS @@ -33,6 +35,8 @@ struct _GncalYearView { GtkWidget *calendar[12]; /* one calendar per month */ guint handler[12]; /* for (un)blocking the calendars */ + + GtkWidget *year_label; gint year; }; @@ -42,9 +46,9 @@ struct _GncalYearViewClass { guint gncal_year_view_get_type (void); -GtkWidget *gncal_year_view_new (int year); +GtkWidget *gncal_year_view_new (time_t date); -void gncal_year_view_set (GncalYearView *yview, int year); +void gncal_year_view_set (GncalYearView *yview, time_t date); END_GNOME_DECLS |