diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-07-13 01:46:15 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-13 19:40:50 +0200 |
commit | 9114c4c41074f017d901d38da8b0801c815e4c73 (patch) | |
tree | 2e8f7f84fff544c509298c14913842365799b351 /gtk/gtkstatusbar.h | |
parent | bf976cc1e4d3d48e1538f12ac4833398e5c3961b (diff) | |
download | gtk+-9114c4c41074f017d901d38da8b0801c815e4c73.tar.gz |
gtkstatusbar: Move public members to private structure
Diffstat (limited to 'gtk/gtkstatusbar.h')
-rw-r--r-- | gtk/gtkstatusbar.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/gtk/gtkstatusbar.h b/gtk/gtkstatusbar.h index 62c655dd3a..a9cc43c156 100644 --- a/gtk/gtkstatusbar.h +++ b/gtk/gtkstatusbar.h @@ -44,31 +44,16 @@ G_BEGIN_DECLS #define GTK_STATUSBAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_STATUSBAR, GtkStatusbarClass)) -/** - * GtkStatusbar: - * - * Contains private data that should be modified with the functions - * described below. - */ typedef struct _GtkStatusbar GtkStatusbar; +typedef struct _GtkStatusbarPriv GtkStatusbarPriv; typedef struct _GtkStatusbarClass GtkStatusbarClass; struct _GtkStatusbar { GtkHBox parent_widget; - GtkWidget *GSEAL (frame); - GtkWidget *GSEAL (label); - - GSList *GSEAL (messages); - GSList *GSEAL (keys); - - guint GSEAL (seq_context_id); - guint GSEAL (seq_message_id); - - GdkWindow *GSEAL (grip_window); - - guint GSEAL (has_resize_grip) : 1; + /* <private> */ + GtkStatusbarPriv *priv; }; struct _GtkStatusbarClass |