gtkcolorsel: unseal private pointer

This commit is contained in:
Javier Jardón 2010-06-02 02:47:06 +02:00
parent ad45f1ce9d
commit 56eafbaad8
2 changed files with 2 additions and 3 deletions

View File

@ -109,7 +109,6 @@ enum {
COLORSEL_NUM_CHANNELS
};
typedef struct _ColorSelectionPrivate ColorSelectionPrivate;
struct _ColorSelectionPrivate
{

View File

@ -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