From 2eef91ad93f4da0e3ffccee55a4669c0dd147514 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 20 Dec 2010 02:07:27 +0100 Subject: [PATCH] x11: Move GdkCursorPrivate into the C file --- gdk/x11/gdkcursor-x11.c | 11 +++++++++++ gdk/x11/gdkprivate-x11.h | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/gdk/x11/gdkcursor-x11.c b/gdk/x11/gdkcursor-x11.c index 63de8f44e..5577033ce 100644 --- a/gdk/x11/gdkcursor-x11.c +++ b/gdk/x11/gdkcursor-x11.c @@ -45,6 +45,17 @@ #include #include +typedef struct _GdkCursorPrivate GdkCursorPrivate; + +struct _GdkCursorPrivate +{ + GdkCursor cursor; + Cursor xcursor; + GdkDisplay *display; + gchar *name; + guint serial; +}; + static guint theme_serial = 0; diff --git a/gdk/x11/gdkprivate-x11.h b/gdk/x11/gdkprivate-x11.h index a2f80dc01..edc191e0f 100644 --- a/gdk/x11/gdkprivate-x11.h +++ b/gdk/x11/gdkprivate-x11.h @@ -40,17 +40,6 @@ #include "gdkdisplay-x11.h" #include -typedef struct _GdkCursorPrivate GdkCursorPrivate; - -struct _GdkCursorPrivate -{ - GdkCursor cursor; - Cursor xcursor; - GdkDisplay *display; - gchar *name; - guint serial; -}; - void _gdk_x11_error_handler_push (void); void _gdk_x11_error_handler_pop (void); -- 2.43.2