diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-06-18 20:59:44 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-06-18 20:59:44 +0000 |
commit | 621fb7466a984a45b5d2fc267eac0024d6218030 (patch) | |
tree | 3f760dd49587cfc84b71c6989daf5be2b0cbb13d /gdk/x11/gdkprivate-x11.h | |
parent | 1371ded54cb57c793a09ccf14c1dfcdcdd6e4a47 (diff) | |
download | gtk+-621fb7466a984a45b5d2fc267eac0024d6218030.tar.gz |
Replace gdk_cursor_new_for_screen() with gdk_cursor_new_for_display().
Tue Jun 18 14:41:48 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcursor.[ch] gdk/x11/gdkcursor-x11.c
gdk/x11/gdkprivate-x11.h gdk/win32/gdkcursor-win32.c: Replace
gdk_cursor_new_for_screen() with gdk_cursor_new_for_display().
(#85671)
* gtk/gtkclist.c gtk/gtkcombo.c gtk/gtkcurve.c gtk/gtkdnd.c
gtk/gtkentry.c gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtklabel.c
gtk/gtkpaned.c gtk/gtktext.c gtk/gtktextview.c
gtk/gtktipsquery.c gtk/gtktreeviewcolumn.c:
Adapt to above change.
Diffstat (limited to 'gdk/x11/gdkprivate-x11.h')
-rw-r--r-- | gdk/x11/gdkprivate-x11.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdk/x11/gdkprivate-x11.h b/gdk/x11/gdkprivate-x11.h index e67968938f..d458c281f6 100644 --- a/gdk/x11/gdkprivate-x11.h +++ b/gdk/x11/gdkprivate-x11.h @@ -35,6 +35,7 @@ #include <gdk/gdkprivate.h> #include <gdk/x11/gdkwindow-x11.h> #include <gdk/x11/gdkpixmap-x11.h> +#include <gdk/x11/gdkdisplay-x11.h> #include "gdkinternals.h" @@ -81,7 +82,7 @@ struct _GdkCursorPrivate { GdkCursor cursor; Cursor xcursor; - GdkScreen *screen; + GdkDisplay *display; }; struct _GdkVisualPrivate |