summaryrefslogtreecommitdiff
path: root/gtk/gtkadjustment.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-01-05 23:03:57 +0100
committerBenjamin Otte <otte@redhat.com>2011-01-05 23:50:22 +0100
commit96091a4d9c20ddea7fa07b26a34b735a2b751234 (patch)
treef4df1b5868674a305e824ed5369e8e1a85c70206 /gtk/gtkadjustment.h
parente1cb1b89d84502c001a060164c2f76f91304e563 (diff)
downloadgtk+-96091a4d9c20ddea7fa07b26a34b735a2b751234.tar.gz
adjustment: Privateize sealed members
Diffstat (limited to 'gtk/gtkadjustment.h')
-rw-r--r--gtk/gtkadjustment.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/gtk/gtkadjustment.h b/gtk/gtkadjustment.h
index 319953b342..dafd8ce4b8 100644
--- a/gtk/gtkadjustment.h
+++ b/gtk/gtkadjustment.h
@@ -43,8 +43,9 @@ G_BEGIN_DECLS
#define GTK_ADJUSTMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ADJUSTMENT, GtkAdjustmentClass))
-typedef struct _GtkAdjustment GtkAdjustment;
-typedef struct _GtkAdjustmentClass GtkAdjustmentClass;
+typedef struct _GtkAdjustment GtkAdjustment;
+typedef struct _GtkAdjustmentPrivate GtkAdjustmentPrivate;
+typedef struct _GtkAdjustmentClass GtkAdjustmentClass;
/**
* GtkAdjustment:
@@ -66,12 +67,7 @@ struct _GtkAdjustment
{
GInitiallyUnowned parent_instance;
- gdouble GSEAL (lower);
- gdouble GSEAL (upper);
- gdouble GSEAL (value);
- gdouble GSEAL (step_increment);
- gdouble GSEAL (page_increment);
- gdouble GSEAL (page_size);
+ GtkAdjustmentPrivate *priv;
};
struct _GtkAdjustmentClass