aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorWilliam Hua <william.hua@canonical.com>2013-04-26 10:49:12 -0400
committerWilliam Hua <william.hua@canonical.com>2013-04-26 10:49:12 -0400
commitbab64c460d9671cfad38d77c4dcb40cd139201bc (patch)
tree0b7d24780f44cb00644e504698299a5ab5db2811 /libindicator
parent83fef721ee298c5b6675f3c1147f453d2ae86def (diff)
downloadlibayatana-indicator-bab64c460d9671cfad38d77c4dcb40cd139201bc.tar.gz
libayatana-indicator-bab64c460d9671cfad38d77c4dcb40cd139201bc.tar.bz2
libayatana-indicator-bab64c460d9671cfad38d77c4dcb40cd139201bc.zip
Clean up error checking.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator-image-helper.c53
1 files changed, 22 insertions, 31 deletions
diff --git a/libindicator/indicator-image-helper.c b/libindicator/indicator-image-helper.c
index ab09050..c9dbb05 100644
--- a/libindicator/indicator-image-helper.c
+++ b/libindicator/indicator-image-helper.c
@@ -64,7 +64,7 @@ refresh_image (GtkImage * image)
}
if (icon_filename == NULL && !G_IS_BYTES_ICON (icon_names)) {
- /* show a broken image if we don't have a filename */
+ /* show a broken image if we don't have a filename or image data */
gtk_image_set_from_stock (image, GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_LARGE_TOOLBAR);
return;
}
@@ -76,47 +76,35 @@ refresh_image (GtkImage * image)
if (icon_filename == NULL) {
GInputStream * stream = g_loadable_icon_load (G_LOADABLE_ICON (icon_names), icon_size, NULL, NULL, &error);
- if (error == NULL) {
+ if (stream != NULL) {
pixbuf = gdk_pixbuf_new_from_stream (stream, NULL, &error);
+ g_input_stream_close (stream, NULL, NULL);
+ g_object_unref (stream);
}
+ } else {
+ pixbuf = gdk_pixbuf_new_from_file (icon_filename, &error);
+ }
- if (error != NULL) {
- if (stream != NULL) {
- g_input_stream_close (stream, NULL, NULL);
- g_object_unref (stream);
- }
-
- if (icon_info != NULL) {
- g_object_unref (icon_info);
- }
+ if (pixbuf == NULL) {
+ const gchar *message = "I don't know";
- g_warning ("Unable to load icon from data: %s", error->message);
- g_clear_error (&error);
- gtk_image_clear (image);
- return;
+ if (error != NULL && error->message != NULL) {
+ message = error->message;
}
- g_input_stream_close (stream, NULL, &error);
+ if (icon_filename != NULL) {
+ g_warning ("Unable to load icon from file '%s': %s", icon_filename, message);
+ } else {
+ g_warning ("Unable to load icon from data: %s", message);
+ }
if (error != NULL) {
- g_warning ("Unable to close input stream: %s", error->message);
g_clear_error (&error);
}
- g_object_unref (stream);
- } else {
- pixbuf = gdk_pixbuf_new_from_file (icon_filename, &error);
-
- if (icon_info != NULL) {
- g_object_unref (icon_info);
- }
+ gtk_image_set_from_stock (image, GTK_STOCK_MISSING_IMAGE, GTK_ICON_SIZE_LARGE_TOOLBAR);
- if (pixbuf == NULL) {
- g_warning ("Unable to load icon from file '%s' because: %s", icon_filename, error == NULL ? "I don't know" : error->message);
- g_clear_error (&error);
- gtk_image_clear (image);
- return;
- }
+ goto out;
}
/* Scale icon if all we get is something too big. */
@@ -133,7 +121,10 @@ refresh_image (GtkImage * image)
gtk_image_set_from_pixbuf(image, pixbuf);
g_object_unref(G_OBJECT(pixbuf));
- return;
+out:
+ if (icon_info != NULL) {
+ gtk_icon_info_free (icon_info);
+ }
}
/* Handles the theme changed signal to refresh the icon to make