diff options
author | Wu Xiaotian <[email protected]> | 2019-01-26 21:29:43 +0800 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-01-29 20:17:34 +0000 |
commit | 6d30b651e3f2ac1ac668c741e19d2fc1cde62b3e (patch) | |
tree | 92dcc097646b2da6a8f1694cfb890fcb7d67e5ef /libmate-desktop/mate-colorsel.h | |
parent | e263ed779d728fbed1b419dddec73fbbf611c7e8 (diff) | |
download | mate-desktop-6d30b651e3f2ac1ac668c741e19d2fc1cde62b3e.tar.bz2 mate-desktop-6d30b651e3f2ac1ac668c741e19d2fc1cde62b3e.tar.xz |
[mate-colorsel] Avoid deprecated g_type_class_add_private
Diffstat (limited to 'libmate-desktop/mate-colorsel.h')
-rw-r--r-- | libmate-desktop/mate-colorsel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmate-desktop/mate-colorsel.h b/libmate-desktop/mate-colorsel.h index f6b9af1..bb44c5f 100644 --- a/libmate-desktop/mate-colorsel.h +++ b/libmate-desktop/mate-colorsel.h @@ -43,7 +43,7 @@ G_BEGIN_DECLS typedef struct _MateColorSelection MateColorSelection; typedef struct _MateColorSelectionClass MateColorSelectionClass; -typedef struct _ColorSelectionPrivate ColorSelectionPrivate; +typedef struct _MateColorSelectionPrivate MateColorSelectionPrivate; typedef void (* MateColorSelectionChangePaletteFunc) (const GdkColor *colors, @@ -57,7 +57,7 @@ struct _MateColorSelection GtkBox parent_instance; /* < private_data > */ - ColorSelectionPrivate *private_data; + MateColorSelectionPrivate *private_data; }; struct _MateColorSelectionClass |