diff options
author | Ted Gould <ted@canonical.com> | 2009-04-07 22:25:24 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-07 22:25:24 -0500 |
commit | a8ab75df408384d4dc0995ac00db27c4fbb46c76 (patch) | |
tree | cc74c0de021d6ad30b06e81b715524a44146be2d /libindicate/indicator.c | |
parent | 13aa4e53918e0dc6cbc90e01ce0297ad18bc6aaf (diff) | |
parent | c1955c5ca3f460f0ac8fc7de84325345b60b8919 (diff) | |
download | libayatana-indicator-a8ab75df408384d4dc0995ac00db27c4fbb46c76.tar.gz libayatana-indicator-a8ab75df408384d4dc0995ac00db27c4fbb46c76.tar.bz2 libayatana-indicator-a8ab75df408384d4dc0995ac00db27c4fbb46c76.zip |
Lots of fixes from trunk
Diffstat (limited to 'libindicate/indicator.c')
-rw-r--r-- | libindicate/indicator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libindicate/indicator.c b/libindicate/indicator.c index e4bae76..9427d03 100644 --- a/libindicate/indicator.c +++ b/libindicate/indicator.c @@ -249,7 +249,7 @@ indicate_indicator_set_property_icon (IndicateIndicator * indicator, const gchar gchar * png_data; gsize png_data_len; - if (!gdk_pixbuf_save_to_buffer(data, &png_data, &png_data_len, "png", &error, NULL)) { + if (!gdk_pixbuf_save_to_buffer((GdkPixbuf *)data, &png_data, &png_data_len, "png", &error, NULL)) { if (error == NULL) { g_warning("Unable to create pixbuf data stream: %d", png_data_len); } else { |