mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
gtkcolorsel: unseal private pointer
This commit is contained in:
parent
ad45f1ce9d
commit
56eafbaad8
@ -109,7 +109,6 @@ enum {
|
||||
COLORSEL_NUM_CHANNELS
|
||||
};
|
||||
|
||||
typedef struct _ColorSelectionPrivate ColorSelectionPrivate;
|
||||
|
||||
struct _ColorSelectionPrivate
|
||||
{
|
||||
|
@ -46,9 +46,9 @@ G_BEGIN_DECLS
|
||||
|
||||
|
||||
typedef struct _GtkColorSelection GtkColorSelection;
|
||||
typedef struct _ColorSelectionPrivate ColorSelectionPrivate;
|
||||
typedef struct _GtkColorSelectionClass GtkColorSelectionClass;
|
||||
|
||||
|
||||
typedef void (* GtkColorSelectionChangePaletteFunc) (const GdkColor *colors,
|
||||
gint n_colors);
|
||||
typedef void (* GtkColorSelectionChangePaletteWithScreenFunc) (GdkScreen *screen,
|
||||
@ -60,7 +60,7 @@ struct _GtkColorSelection
|
||||
GtkVBox parent_instance;
|
||||
|
||||
/* < private_data > */
|
||||
gpointer GSEAL (private_data);
|
||||
ColorSelectionPrivate *private_data;
|
||||
};
|
||||
|
||||
struct _GtkColorSelectionClass
|
||||
|
Loading…
Reference in New Issue
Block a user