mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 05:01:09 +00:00
GtkTable: move public members to private structure
This commit is contained in:
parent
1af22acbf7
commit
703f7121ae
658
gtk/gtktable.c
658
gtk/gtktable.c
File diff suppressed because it is too large
Load Diff
@ -46,6 +46,7 @@ G_BEGIN_DECLS
|
||||
|
||||
|
||||
typedef struct _GtkTable GtkTable;
|
||||
typedef struct _GtkTablePriv GtkTablePriv;
|
||||
typedef struct _GtkTableClass GtkTableClass;
|
||||
typedef struct _GtkTableChild GtkTableChild;
|
||||
typedef struct _GtkTableRowCol GtkTableRowCol;
|
||||
@ -54,14 +55,8 @@ struct _GtkTable
|
||||
{
|
||||
GtkContainer container;
|
||||
|
||||
GList *GSEAL (children);
|
||||
GtkTableRowCol *GSEAL (rows);
|
||||
GtkTableRowCol *GSEAL (cols);
|
||||
guint16 GSEAL (nrows);
|
||||
guint16 GSEAL (ncols);
|
||||
guint16 GSEAL (column_spacing);
|
||||
guint16 GSEAL (row_spacing);
|
||||
guint GSEAL (homogeneous) : 1;
|
||||
/* <private> */
|
||||
GtkTablePriv *priv;
|
||||
};
|
||||
|
||||
struct _GtkTableClass
|
||||
|
Loading…
Reference in New Issue
Block a user