diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-08-04 19:02:36 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-08-04 19:02:36 +0000 |
commit | 72f11163875fee95067f00e8a719ec8d7a879111 (patch) | |
tree | f77df0b6721af0024d7708664f6453b6c29dd689 /gdk/x11 | |
parent | b9987ad725de709fb4dc07a9046cd562635f1b85 (diff) | |
download | gdk-pixbuf-72f11163875fee95067f00e8a719ec8d7a879111.tar.gz |
Fix problem where use_xshm was getting set wrong if MIT_SHM wasn't found.
Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init):
Fix problem where use_xshm was getting set wrong if
MIT_SHM wasn't found. (George Lebel)
Diffstat (limited to 'gdk/x11')
-rw-r--r-- | gdk/x11/gdkimage-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/x11/gdkimage-x11.c b/gdk/x11/gdkimage-x11.c index be9f4df6d..dda055785 100644 --- a/gdk/x11/gdkimage-x11.c +++ b/gdk/x11/gdkimage-x11.c @@ -217,8 +217,8 @@ _gdk_windowing_image_init (GdkDisplay *display) event_base, ShmNumberEvents); } else - display_x11->use_xshm = TRUE; #endif /* USE_SHM */ + display_x11->use_xshm = FALSE; } } |