x11: Move GdkCursorPrivate into the C file

This commit is contained in:
Benjamin Otte 2010-12-20 02:07:27 +01:00 committed by Matthias Clasen
parent 8e3afc6e5a
commit 2eef91ad93
2 changed files with 11 additions and 11 deletions

View File

@ -45,6 +45,17 @@
#include <string.h>
#include <errno.h>
typedef struct _GdkCursorPrivate GdkCursorPrivate;
struct _GdkCursorPrivate
{
GdkCursor cursor;
Cursor xcursor;
GdkDisplay *display;
gchar *name;
guint serial;
};
static guint theme_serial = 0;

View File

@ -40,17 +40,6 @@
#include "gdkdisplay-x11.h"
#include <cairo-xlib.h>
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);