diff options
author | Giedrius Statkevičius <[email protected]> | 2015-10-28 15:45:58 +0200 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-10-30 18:13:34 +0100 |
commit | 7d162d83a2008c25b3134fcdda8265f23d461585 (patch) | |
tree | 3af5933833df6999dba8d657e86611259981ff32 | |
parent | 70d9f65d66fa18f72333073247bae0d9d92535fe (diff) | |
download | mate-notification-daemon-7d162d83a2008c25b3134fcdda8265f23d461585.tar.bz2 mate-notification-daemon-7d162d83a2008c25b3134fcdda8265f23d461585.tar.xz |
daemon: fix "GValueArray is deprecated" warnings
GValueArray is deprecated so move to GArray instead in
_notify_daemon_pixbuf_from_data_hint()
-rw-r--r-- | src/daemon/daemon.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c index 92fcb0b..e0dd3e6 100644 --- a/src/daemon/daemon.c +++ b/src/daemon/daemon.c @@ -933,7 +933,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) int n_channels; gsize expected_len; GdkPixbuf* pixbuf; - GValueArray* image_struct; + GArray* image_struct; GValue* value; GArray* tmp_array; GType struct_type; @@ -946,8 +946,8 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) return NULL; } - image_struct = (GValueArray *) g_value_get_boxed (icon_data); - value = g_value_array_get_nth (image_struct, 0); + image_struct = (GArray *) g_value_get_boxed (icon_data); + value = g_array_index(image_struct, GValue *, 0); if (value == NULL) { @@ -962,7 +962,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } width = g_value_get_int (value); - value = g_value_array_get_nth (image_struct, 1); + value = g_array_index (image_struct, GValue *, 1); if (value == NULL) { @@ -977,7 +977,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } height = g_value_get_int (value); - value = g_value_array_get_nth (image_struct, 2); + value = g_array_index (image_struct, GValue *, 2); if (value == NULL) { @@ -992,7 +992,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } rowstride = g_value_get_int (value); - value = g_value_array_get_nth (image_struct, 3); + value = g_array_index (image_struct, GValue *, 3); if (value == NULL) { @@ -1007,7 +1007,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } has_alpha = g_value_get_boolean (value); - value = g_value_array_get_nth (image_struct, 4); + value = g_array_index (image_struct, GValue *, 4); if (value == NULL) { g_warning ("_notify_daemon_pixbuf_from_data_hint expected position 4 of the GValueArray to exist"); @@ -1021,7 +1021,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } bits_per_sample = g_value_get_int (value); - value = g_value_array_get_nth (image_struct, 5); + value = g_array_index (image_struct, GValue *, 5); if (value == NULL) { @@ -1036,7 +1036,7 @@ static GdkPixbuf* _notify_daemon_pixbuf_from_data_hint(GValue* icon_data) } n_channels = g_value_get_int (value); - value = g_value_array_get_nth (image_struct, 6); + value = g_array_index (image_struct, GValue *, 6); if (value == NULL) { |