diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-10-17 15:26:29 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-10-17 19:11:32 -0400 |
commit | a0140cad15523f4e83ad9f3a622c6d744ce6f099 (patch) | |
tree | c88c61a36763c4c3c791b80ace3c75ce1542a44b /gdk/wayland | |
parent | 4384628afb4a823da613654d2ed05dbdf0151a5e (diff) | |
download | gtk+-a0140cad15523f4e83ad9f3a622c6d744ce6f099.tar.gz |
Reduce a warning to a message
The warning interferes with having a testcase to check this behavior,
so reduce this to a message.
Diffstat (limited to 'gdk/wayland')
-rw-r--r-- | gdk/wayland/gdkcursor-wayland.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdk/wayland/gdkcursor-wayland.c b/gdk/wayland/gdkcursor-wayland.c index 35cf8cd4fd..ab50755873 100644 --- a/gdk/wayland/gdkcursor-wayland.c +++ b/gdk/wayland/gdkcursor-wayland.c @@ -167,7 +167,7 @@ _gdk_wayland_cursor_update (GdkWaylandDisplay *display_wayland, if (!c) { - g_warning (G_STRLOC ": Unable to load %s from the cursor theme", cursor->name); + g_message ("Unable to load %s from the cursor theme", cursor->name); return FALSE; } @@ -353,7 +353,10 @@ _gdk_wayland_display_get_cursor_for_name_with_scale (GdkDisplay *display, return GDK_CURSOR (private); if (!_gdk_wayland_cursor_update (display_wayland, private)) - return GDK_CURSOR (private); + { + g_object_unref (private); + return NULL; + } /* Insert into cache. */ g_hash_table_insert (display_wayland->cursor_cache, |