diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2008-07-02 03:05:29 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2008-07-02 03:05:29 +0000 |
commit | 6b399c7687cd645bb4ed1e16319080ab9d3d00d5 (patch) | |
tree | c072908253fb19b0925d25eb8002025bd02fd8d3 /x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c | |
parent | Remove openoffice.org-1.0, 1.1, and 1.1-devel ports. (diff) |
Update to 2.12.11.
Notes
Notes:
svn path=/head/; revision=216112
Diffstat (limited to 'x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c')
-rw-r--r-- | x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c b/x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c deleted file mode 100644 index d9ce8c811ed2..000000000000 --- a/x11-toolkits/gtk30/files/patch-gdk_x11_gdkwindow-x11.c +++ /dev/null @@ -1,31 +0,0 @@ -Index: gdk/x11/gdkwindow-x11.c -=================================================================== ---- gdk/x11/gdkwindow-x11.c (revision 20280) -+++ gdk/x11/gdkwindow-x11.c (working copy) -@@ -3412,6 +3412,7 @@ - Window xwindow; - Window xparent; - Window root; -+ Window child; - Window *children; - guchar *data; - Window *vroots; -@@ -3470,13 +3471,15 @@ - if ((type_return == XA_CARDINAL) && (format_return == 32) && - (nitems_return == 4) && (data)) - { -- guint32 *ldata = (guint32 *) data; -+ gulong *ldata = (gulong *) data; - got_frame_extents = TRUE; - - /* try to get the real client window geometry */ - if (XGetGeometry (GDK_DISPLAY_XDISPLAY (display), xwindow, -- &root, &wx, &wy, &ww, &wh, &wb, &wd)) -- { -+ &root, &wx, &wy, &ww, &wh, &wb, &wd) && -+ XTranslateCoordinates (GDK_DISPLAY_XDISPLAY (display), -+ xwindow, root, 0, 0, &wx, &wy, &child)) -+ { - rect->x = wx; - rect->y = wy; - rect->width = ww; |