From c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860 Mon Sep 17 00:00:00 2001 From: Javier Jardón Date: Fri, 18 Dec 2020 08:24:25 +0000 Subject: Fix some compilations warnings --- src/util.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index 0c101866..2887fd96 100644 --- a/src/util.c +++ b/src/util.c @@ -153,7 +153,7 @@ zenity_util_fill_file_buffer (GtkTextBuffer *buffer, const gchar *filename) { gtk_text_buffer_insert (buffer, &iter, buf, leftover - buf); remaining = (buf + remaining + count) - leftover; - g_memmove (buf, leftover, remaining); + memmove (buf, leftover, remaining); if (remaining > 6 || count < to_read) break; @@ -326,11 +326,12 @@ transient_get_xterm (void) { Window wid = strtoul (wid_str, &wid_str_end, 10); if (*wid_str != '\0' && *wid_str_end == '\0' && wid != 0) { XWindowAttributes attrs; - gdk_error_trap_push (); + GdkDisplay *display; + display = gdk_display_get_default (); + gdk_x11_display_error_trap_push (display); ret = XGetWindowAttributes ( GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), wid, &attrs); - gdk_flush (); - if (gdk_error_trap_pop () != 0 || ret == 0) { + if (gdk_x11_display_error_trap_pop (display) != 0 || ret == 0) { return None; } return wid; -- cgit