diff options
author | raveit65 <[email protected]> | 2016-06-17 01:26:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-07-02 12:31:11 +0200 |
commit | 40d833ec5846a7e2f4bbe7bf794e6f5bebe15d00 (patch) | |
tree | 7e1976ce3a22ada85b8c73313178ddd42a322865 /capplets/appearance/mate-wp-item.h | |
parent | 1a5bb9681bede5e1ddf6386c75ff55c464956e99 (diff) | |
download | mate-control-center-40d833ec5846a7e2f4bbe7bf794e6f5bebe15d00.tar.bz2 mate-control-center-40d833ec5846a7e2f4bbe7bf794e6f5bebe15d00.tar.xz |
GTK+3 mate-wp-item: port GdkColor to GdkRGBA
Diffstat (limited to 'capplets/appearance/mate-wp-item.h')
-rw-r--r-- | capplets/appearance/mate-wp-item.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/capplets/appearance/mate-wp-item.h b/capplets/appearance/mate-wp-item.h index 5e336d53..f75b8474 100644 --- a/capplets/appearance/mate-wp-item.h +++ b/capplets/appearance/mate-wp-item.h @@ -45,8 +45,13 @@ struct _MateWPItem { GtkTreeRowReference * rowref; /* Real colors */ +#if GTK_CHECK_VERSION (3, 0, 0) + GdkRGBA * pcolor; + GdkRGBA * scolor; +#else GdkColor * pcolor; GdkColor * scolor; +#endif MateWPInfo * fileinfo; |