diff options
Diffstat (limited to 'abs/core/gtk2')
-rw-r--r-- | abs/core/gtk2/gtk2-emit-size-change.patch | 26 | ||||
-rw-r--r-- | abs/core/gtk2/gtkclipboard-check.patch | 11 | ||||
-rw-r--r-- | abs/core/gtk2/revert_64bit_fix.patch | 31 |
3 files changed, 0 insertions, 68 deletions
diff --git a/abs/core/gtk2/gtk2-emit-size-change.patch b/abs/core/gtk2/gtk2-emit-size-change.patch deleted file mode 100644 index 34053a8..0000000 --- a/abs/core/gtk2/gtk2-emit-size-change.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -Naur gtk+-2.14.5-old/gdk/x11/gdkscreen-x11.c gtk+-2.14.5/gdk/x11/gdkscreen-x11.c ---- gtk+-2.14.5-old/gdk/x11/gdkscreen-x11.c 2008-11-24 16:36:03.000000000 +1000 -+++ gtk+-2.14.5/gdk/x11/gdkscreen-x11.c 2008-12-03 00:39:38.000000000 +1000 -@@ -894,11 +894,6 @@ - _gdk_x11_screen_size_changed (GdkScreen *screen, - XEvent *event) - { -- gint width, height; -- -- width = gdk_screen_get_width (screen); -- height = gdk_screen_get_height (screen); -- - #ifdef HAVE_RANDR - if (!XRRUpdateConfiguration (event)) - return; -@@ -915,10 +910,6 @@ - return; - #endif - -- if (width == gdk_screen_get_width (screen) && -- height == gdk_screen_get_height (screen)) -- return; -- - _gdk_x11_screen_process_monitors_change (screen); - g_signal_emit_by_name (screen, "size_changed"); - } diff --git a/abs/core/gtk2/gtkclipboard-check.patch b/abs/core/gtk2/gtkclipboard-check.patch deleted file mode 100644 index 48894fb..0000000 --- a/abs/core/gtk2/gtkclipboard-check.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- gtk+-2.11.6/gtk/gtkclipboard.c.orig 2007-08-18 13:48:22.000000000 +0000 -+++ gtk+-2.11.6/gtk/gtkclipboard.c 2007-08-18 13:49:08.000000000 +0000 -@@ -287,6 +287,8 @@ - gtk_clipboard_get_for_display (GdkDisplay *display, - GdkAtom selection) - { -+ if (display == NULL) -+ return NULL; - g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL); - g_return_val_if_fail (!display->closed, NULL); - diff --git a/abs/core/gtk2/revert_64bit_fix.patch b/abs/core/gtk2/revert_64bit_fix.patch deleted file mode 100644 index a6453e3..0000000 --- a/abs/core/gtk2/revert_64bit_fix.patch +++ /dev/null @@ -1,31 +0,0 @@ -From a0f23e1706b34bca6a65183040d1f1498cce2a50 Mon Sep 17 00:00:00 2001 -From: Matthias Clasen <mclasen@redhat.com> -Date: Thu, 25 Mar 2010 04:55:15 +0000 -Subject: Fix a 64bit issue - -Thank you libpng, for typedef unsigned long png_uint_32. ---- -diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c -index c0374ca..43db70a 100644 ---- a/gdk-pixbuf/io-png.c -+++ b/gdk-pixbuf/io-png.c -@@ -261,7 +261,7 @@ gdk_pixbuf__png_image_load (FILE *f, GError **error) - gchar *icc_profile_base64; - const gchar *icc_profile_title; - const gchar *icc_profile; -- guint icc_profile_size; -+ gulong icc_profile_size; - guint32 retval; - gint compression_type; - -@@ -607,7 +607,7 @@ png_info_callback (png_structp png_read_ptr, - gchar *icc_profile_base64; - const gchar *icc_profile_title; - const gchar *icc_profile; -- guint icc_profile_size; -+ gulong icc_profile_size; - guint32 retval; - gint compression_type; - --- -cgit v0.8.3.1 |