diff options
author | raveit65 <[email protected]> | 2016-07-31 23:56:30 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-08-31 15:29:57 +0200 |
commit | 9684cbb449ce68a11ea9ccf4d040e9b49b189eee (patch) | |
tree | 135f5a95aeaa88f49482c4164a8ada3e87a8143a /multiload/global.h | |
parent | af8334ea1159d64330d1c295000b78ed0daa9f63 (diff) | |
download | mate-applets-9684cbb449ce68a11ea9ccf4d040e9b49b189eee.tar.bz2 mate-applets-9684cbb449ce68a11ea9ccf4d040e9b49b189eee.tar.xz |
GTK+-3 multiload: port to GtkColorChooser and GdkRGBA
Diffstat (limited to 'multiload/global.h')
-rw-r--r-- | multiload/global.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/multiload/global.h b/multiload/global.h index 52e25db6..8971df2c 100644 --- a/multiload/global.h +++ b/multiload/global.h @@ -30,7 +30,11 @@ struct _LoadGraph { guint allocated; +#if GTK_CHECK_VERSION (3, 0, 0) + GdkRGBA *colors; +#else GdkColor *colors; +#endif gint **data; guint data_size; guint *pos; |