mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
x11: Move GdkCursorPrivate into the C file
This commit is contained in:
parent
8e3afc6e5a
commit
2eef91ad93
@ -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;
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user