summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compiz-fusion/emerald/HISTORY3
-rw-r--r--compiz-fusion/emerald/gtk2.20.patch61
2 files changed, 61 insertions, 3 deletions
diff --git a/compiz-fusion/emerald/HISTORY b/compiz-fusion/emerald/HISTORY
index e5529748e0..469381baa8 100644
--- a/compiz-fusion/emerald/HISTORY
+++ b/compiz-fusion/emerald/HISTORY
@@ -1,3 +1,6 @@
+2010-12-23 Pol Vinogradov <vin.public@gmail.com>
+ * gtk2.20.patch: more fixes for compiling with gtk
+
2010-04-26 Eric Sandall <sandalle@sourcemage.org>
* PRE_BUILD: Apply gtk2.20.patch
* gtk2.20.patch: Fix compilation with gtk+2 2.20 (Bug #15693)
diff --git a/compiz-fusion/emerald/gtk2.20.patch b/compiz-fusion/emerald/gtk2.20.patch
index 5da5e12e0e..07ecf6ed7f 100644
--- a/compiz-fusion/emerald/gtk2.20.patch
+++ b/compiz-fusion/emerald/gtk2.20.patch
@@ -20,8 +20,17 @@ diff -urN emerald-0.8.4/libengine/themer.c emerald-0.8.4.new/libengine/themer.c
gtk_spin_button_set_value((GtkSpinButton *)item->widget, f);
}
else {
---- emerald-0.8.4/src/main.c.old 2010-03-29 19:49:30.420710030 -0700
-+++ emerald-0.8.4/src/main.c 2010-03-29 19:52:33.654024944 -0700
+--- emerald-0.8.4/src/main.c.old 2010-12-23 20:03:51.083703858 -0500
++++ emerald-0.8.4/src/main.c 2010-12-23 19:56:19.657703857 -0500
+@@ -2457,7 +2457,7 @@
+ gdk_error_trap_push();
+
+ type = None;
+- result = XGetWindowProperty(gdk_display,
++ result = XGetWindowProperty(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()),
+ xwindow,
+ atom,
+ 0, G_MAXLONG,
@@ -3757,7 +3757,7 @@
static void hide_tooltip(void)
@@ -31,4 +40,50 @@ diff -urN emerald-0.8.4/libengine/themer.c emerald-0.8.4.new/libengine/themer.c
g_get_current_time(&tooltip_last_popdown);
gtk_widget_hide(tip_window);
-
+@@ -4246,10 +4246,10 @@
+ WnckWindow *win = data;
+
+ gdk_error_trap_push();
+- XSetTransientForHint(gdk_display,
++ XSetTransientForHint(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()),
+ GDK_WINDOW_XID(dialog->window),
+ wnck_window_get_xid(win));
+- XSync(gdk_display, FALSE);
++ XSync(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), FALSE);
+ gdk_error_trap_pop();
+ }
+
+@@ -4262,11 +4262,11 @@
+ int format, result;
+ char *retval;
+
+- atom = XInternAtom(gdk_display, "WM_CLIENT_MACHINE", FALSE);
++ atom = XInternAtom(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), "WM_CLIENT_MACHINE", FALSE);
+
+ gdk_error_trap_push();
+
+- result = XGetWindowProperty(gdk_display,
++ result = XGetWindowProperty(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()),
+ xwindow, atom,
+ 0, G_MAXLONG,
+ FALSE, XA_STRING, &type, &format, &nitems,
+@@ -4318,8 +4318,8 @@
+ }
+
+ gdk_error_trap_push();
+- XKillClient(gdk_display, wnck_window_get_xid(win));
+- XSync(gdk_display, FALSE);
++ XKillClient(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), wnck_window_get_xid(win));
++ XSync(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), FALSE);
+ gdk_error_trap_pop();
+ }
+
+@@ -4739,7 +4739,7 @@
+
+ static int update_shadow(frame_settings * fs)
+ {
+- Display *xdisplay = gdk_display;
++ Display *xdisplay = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ());
+ XRenderPictFormat *format;
+ GdkPixmap *pixmap;
+ Picture src, dst, tmp;