[gtk+] iconhelper: Show error if fail to load placeholder icon
- From: Robert Ancell <rancell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] iconhelper: Show error if fail to load placeholder icon
- Date: Thu, 8 Jun 2017 21:25:39 +0000 (UTC)
commit 82a4e830a3772515c0276f509940d216a8f06218
Author: Robert Ancell <robert ancell canonical com>
Date: Thu Jun 8 11:29:09 2017 +1200
iconhelper: Show error if fail to load placeholder icon
gtk/gtkiconhelper.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkiconhelper.c b/gtk/gtkiconhelper.c
index ae62741..aab69db 100644
--- a/gtk/gtkiconhelper.c
+++ b/gtk/gtkiconhelper.c
@@ -454,13 +454,15 @@ ensure_surface_for_gicon (GtkIconHelper *self,
if (destination == NULL)
{
+ GError *error = NULL;
destination = gtk_icon_theme_load_icon (icon_theme,
"image-missing",
width,
flags | GTK_ICON_LOOKUP_USE_BUILTIN |
GTK_ICON_LOOKUP_GENERIC_FALLBACK,
- NULL);
+ &error);
/* We include this image as resource, so we always have it available or
* the icontheme code is broken */
+ g_assert_no_error (error);
g_assert (destination);
symbolic = FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]