diff options
Diffstat (limited to 'calendar/pcs/cal.h')
-rw-r--r-- | calendar/pcs/cal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/pcs/cal.h b/calendar/pcs/cal.h index a11cedebbb..2b17278573 100644 --- a/calendar/pcs/cal.h +++ b/calendar/pcs/cal.h @@ -37,11 +37,13 @@ BEGIN_GNOME_DECLS #define IS_CAL(obj) (GTK_CHECK_TYPE ((obj), CAL_TYPE)) #define IS_CAL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), CAL_TYPE)) +typedef struct _CalPrivate CalPrivate; + struct _Cal { BonoboObject object; /* Private data */ - gpointer priv; + CalPrivate *priv; }; struct _CalClass { |