summaryrefslogtreecommitdiff
path: root/gtk/gtkcalendar.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-08-12 17:14:51 +0200
committerJavier Jardón <jjardon@gnome.org>2010-08-12 18:02:31 +0200
commite6ed4da2152116001206d0e94edc33e5083c0661 (patch)
tree43f0b892ea501ecd2732b323c236144a382c658c /gtk/gtkcalendar.h
parent05134768fed4eb54f74d193348d3c26b1a0df844 (diff)
downloadgtk+-e6ed4da2152116001206d0e94edc33e5083c0661.tar.gz
GtkCalendar: move public members to private structure
Diffstat (limited to 'gtk/gtkcalendar.h')
-rw-r--r--gtk/gtkcalendar.h30
1 files changed, 1 insertions, 29 deletions
diff --git a/gtk/gtkcalendar.h b/gtk/gtkcalendar.h
index fd74cd3f3c..51cd8f3c39 100644
--- a/gtk/gtkcalendar.h
+++ b/gtk/gtkcalendar.h
@@ -102,36 +102,8 @@ typedef gchar* (*GtkCalendarDetailFunc) (GtkCalendar *calendar,
struct _GtkCalendar
{
GtkWidget widget;
-
- GtkStyle *GSEAL (header_style);
- GtkStyle *GSEAL (label_style);
-
- gint GSEAL (month);
- gint GSEAL (year);
- gint GSEAL (selected_day);
-
- gint GSEAL (day_month[6][7]);
- gint GSEAL (day[6][7]);
-
- gint GSEAL (num_marked_dates);
- gint GSEAL (marked_date[31]);
- GtkCalendarDisplayOptions GSEAL (display_flags);
- GdkColor GSEAL (marked_date_color[31]);
-
- gint GSEAL (focus_row);
- gint GSEAL (focus_col);
- gint GSEAL (highlight_row);
- gint GSEAL (highlight_col);
-
- GtkCalendarPrivate *GSEAL (priv);
- gchar GSEAL (grow_space [32]);
-
- /* Padding for future expansion */
- void (*_gtk_reserved1) (void);
- void (*_gtk_reserved2) (void);
- void (*_gtk_reserved3) (void);
- void (*_gtk_reserved4) (void);
+ GtkCalendarPrivate *priv;
};
struct _GtkCalendarClass