diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-01-14 21:33:56 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-01-15 08:59:43 +0100 |
commit | befd8aa730c327d52ebc2dc93608bf33cc31b885 (patch) | |
tree | 46c4204aa06808c5bbe1da2f4cc5e356b6a80922 /source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch | |
parent | 8ec371c51c2deb7a0da8417685db5723ce14bec5 (diff) | |
download | current-befd8aa730c327d52ebc2dc93608bf33cc31b885.tar.gz |
Mon Jan 14 21:33:56 UTC 201920190114213356
a/aaa_terminfo-6.1_20190112-x86_64-1.txz: Upgraded.
a/kernel-firmware-20190114_bc65650-noarch-1.txz: Upgraded.
l/gtk+3-3.24.3-x86_64-1.txz: Upgraded.
l/libunwind-1.3.1-x86_64-1.txz: Upgraded.
l/ncurses-6.1_20190112-x86_64-1.txz: Upgraded.
x/xterm-343-x86_64-1.txz: Upgraded.
xap/blueman-2.0.8-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch')
-rw-r--r-- | source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch b/source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch deleted file mode 100644 index 99806d19..00000000 --- a/source/l/gtk+3/gtk.e3a1593a0984cc0156ec1892a46af8f256a64878.patch +++ /dev/null @@ -1,42 +0,0 @@ -From e3a1593a0984cc0156ec1892a46af8f256a64878 Mon Sep 17 00:00:00 2001 -From: Daniel Boles <dboles.src@gmail.com> -Date: Thu, 13 Dec 2018 17:20:13 +0100 -Subject: [PATCH] x11: Fix deprecation macro use - -G_GNUC_END_IGNORE_DEPRECATIONS terminates the if statement and does not -consider the following block to be part of the if. So that block was -always taken irregardless of the pattern. - -Fixes #1280 ---- - gdk/x11/gdkwindow-x11.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/gdk/x11/gdkwindow-x11.c b/gdk/x11/gdkwindow-x11.c -index 97ada6d739..764e39495f 100644 ---- a/gdk/x11/gdkwindow-x11.c -+++ b/gdk/x11/gdkwindow-x11.c -@@ -2985,6 +2985,7 @@ gdk_window_x11_set_background (GdkWindow *window, - double r, g, b, a; - cairo_surface_t *surface; - cairo_matrix_t matrix; -+ cairo_pattern_t *parent_relative_pattern; - - if (GDK_WINDOW_DESTROYED (window)) - return; -@@ -2997,8 +2998,10 @@ gdk_window_x11_set_background (GdkWindow *window, - } - - G_GNUC_BEGIN_IGNORE_DEPRECATIONS -- if (pattern == gdk_x11_get_parent_relative_pattern ()) -+ parent_relative_pattern = gdk_x11_get_parent_relative_pattern (); - G_GNUC_END_IGNORE_DEPRECATIONS -+ -+ if (pattern == parent_relative_pattern) - { - GdkWindow *parent; - --- -2.18.1 - - |