summaryrefslogtreecommitdiff
path: root/gtk/gtkalignment.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-07-14 01:38:00 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-14 01:48:53 +0200
commit461f055da615efdb2f6a9c3961abdf21bf49cfa7 (patch)
tree10c2cf26e29c376593f57c084302a9a08497c348 /gtk/gtkalignment.h
parent5828453ae5fa74186fed5098093aa7f028746ce7 (diff)
downloadgtk+-461f055da615efdb2f6a9c3961abdf21bf49cfa7.tar.gz
GtkAlignment: move public members to private structure
Diffstat (limited to 'gtk/gtkalignment.h')
-rw-r--r--gtk/gtkalignment.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/gtk/gtkalignment.h b/gtk/gtkalignment.h
index 9a37191d93..9b391efda4 100644
--- a/gtk/gtkalignment.h
+++ b/gtk/gtkalignment.h
@@ -46,17 +46,15 @@ G_BEGIN_DECLS
typedef struct _GtkAlignment GtkAlignment;
+typedef struct _GtkAlignmentPriv GtkAlignmentPriv;
typedef struct _GtkAlignmentClass GtkAlignmentClass;
-typedef struct _GtkAlignmentPrivate GtkAlignmentPrivate;
struct _GtkAlignment
{
GtkBin bin;
- gfloat GSEAL (xalign);
- gfloat GSEAL (yalign);
- gfloat GSEAL (xscale);
- gfloat GSEAL (yscale);
+ /* <private> */
+ GtkAlignmentPriv *priv;
};
struct _GtkAlignmentClass