diff options
author | Stefano Karapetsas <[email protected]> | 2014-05-04 20:02:13 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-05-04 20:02:13 +0200 |
commit | 36674f729711588181754a4b587564962e15c138 (patch) | |
tree | 196140b1b8599e2e13f450e757e9bc1b517a505a /libmate-desktop/mate-colorsel.h | |
parent | c9497d958bb1ca646c1b8b69dfe344f2e2a555ed (diff) | |
download | mate-desktop-36674f729711588181754a4b587564962e15c138.tar.bz2 mate-desktop-36674f729711588181754a4b587564962e15c138.tar.xz |
libmate-desktop: Add GTK3 support to MateColorButton
Diffstat (limited to 'libmate-desktop/mate-colorsel.h')
-rw-r--r-- | libmate-desktop/mate-colorsel.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libmate-desktop/mate-colorsel.h b/libmate-desktop/mate-colorsel.h index d292eb4..cd5b995 100644 --- a/libmate-desktop/mate-colorsel.h +++ b/libmate-desktop/mate-colorsel.h @@ -42,6 +42,7 @@ G_BEGIN_DECLS typedef struct _MateColorSelection MateColorSelection; typedef struct _MateColorSelectionClass MateColorSelectionClass; +typedef struct _ColorSelectionPrivate ColorSelectionPrivate; typedef void (* MateColorSelectionChangePaletteFunc) (const GdkColor *colors, @@ -55,7 +56,7 @@ struct _MateColorSelection GtkVBox parent_instance; /* < private_data > */ - gpointer GSEAL (private_data); + ColorSelectionPrivate *private_data; }; struct _MateColorSelectionClass @@ -121,8 +122,6 @@ void mate_color_selection_set_color (MateColorSelection *colorsel, gdouble *color); void mate_color_selection_get_color (MateColorSelection *colorsel, gdouble *color); -void mate_color_selection_set_update_policy (MateColorSelection *colorsel, - GtkUpdateType policy); #endif /* GTK_DISABLE_DEPRECATED */ G_END_DECLS |