# HG changeset patch # User Luke Schierer # Date 1094934223 0 # Node ID bae1cd16e854c6ec210b2957188ef379b369459d # Parent ef935958e84c416499af97b92e1047d7537ff0ce [gaim-migrate @ 10938] (16:05:11) datallah: PacoPaco's x.org patch is problematic for win32 (16:06:33) datallah: should there be X stuff directly in gtkblist.c ? (16:06:48) ***LSchiere grumbles (16:07:28) datallah: i have a patch to make it work, but i'm wondering if the XQueryExtension call belongs there committer: Tailor Script diff -r ef935958e84c -r bae1cd16e854 src/gtkblist.c --- a/src/gtkblist.c Sat Sep 11 19:58:58 2004 +0000 +++ b/src/gtkblist.c Sat Sep 11 20:23:43 2004 +0000 @@ -186,7 +186,9 @@ static gboolean xcomposite_is_present() { - static gboolean known = FALSE, result = FALSE; + static gboolean result = FALSE; +#ifndef _WIN32 + static gboolean known = FALSE; int i, j, k; if (!known) { @@ -195,6 +197,7 @@ result = TRUE; known = TRUE; } +#endif return result; }