x11: Move GdkCursorPrivate into the C file
This commit is contained in:

committed by
Matthias Clasen

parent
8e3afc6e5a
commit
2eef91ad93
@ -45,6 +45,17 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.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;
|
static guint theme_serial = 0;
|
||||||
|
|
||||||
|
@ -40,17 +40,6 @@
|
|||||||
#include "gdkdisplay-x11.h"
|
#include "gdkdisplay-x11.h"
|
||||||
#include <cairo-xlib.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_push (void);
|
||||||
void _gdk_x11_error_handler_pop (void);
|
void _gdk_x11_error_handler_pop (void);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user