summaryrefslogtreecommitdiff
path: root/gtk/gtkradiobutton.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-07-08 01:04:11 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:49 +0200
commitec4c06105d7746df7883fe88bf0198592a93da30 (patch)
treed13d374cf6c1a4f7b9e3542a99e663b88ae3e62e /gtk/gtkradiobutton.h
parent6ce52cab3c4a7055cb25e6f81522ae860ae58087 (diff)
downloadgtk+-ec4c06105d7746df7883fe88bf0198592a93da30.tar.gz
GtkRadioButton: Move public members to private structure
Diffstat (limited to 'gtk/gtkradiobutton.h')
-rw-r--r--gtk/gtkradiobutton.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkradiobutton.h b/gtk/gtkradiobutton.h
index fb075131f6..7c1e5b4cd6 100644
--- a/gtk/gtkradiobutton.h
+++ b/gtk/gtkradiobutton.h
@@ -46,13 +46,15 @@ G_BEGIN_DECLS
typedef struct _GtkRadioButton GtkRadioButton;
+typedef struct _GtkRadioButtonPriv GtkRadioButtonPriv;
typedef struct _GtkRadioButtonClass GtkRadioButtonClass;
struct _GtkRadioButton
{
GtkCheckButton check_button;
- GSList *GSEAL (group);
+ /* <private> */
+ GtkRadioButtonPriv *priv;
};
struct _GtkRadioButtonClass