forked from AuroraMiddleware/gtk
gdk: Make GdkWindowImpl inherit from GObject
This commit is contained in:
parent
3494f87a10
commit
4bfa4e0d86
@ -31,7 +31,7 @@
|
|||||||
#include "gdkinternals.h"
|
#include "gdkinternals.h"
|
||||||
|
|
||||||
|
|
||||||
G_DEFINE_TYPE (GdkWindowImpl, gdk_window_impl, GDK_TYPE_DRAWABLE);
|
G_DEFINE_TYPE (GdkWindowImpl, gdk_window_impl, G_TYPE_OBJECT);
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -43,12 +43,12 @@ typedef struct _GdkWindowImplClass GdkWindowImplClass;
|
|||||||
|
|
||||||
struct _GdkWindowImpl
|
struct _GdkWindowImpl
|
||||||
{
|
{
|
||||||
GdkDrawable parent;
|
GObject parent;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GdkWindowImplClass
|
struct _GdkWindowImplClass
|
||||||
{
|
{
|
||||||
GdkDrawableClass parent_class;
|
GObjectClass parent_class;
|
||||||
|
|
||||||
cairo_surface_t *
|
cairo_surface_t *
|
||||||
(* ref_cairo_surface) (GdkWindow *window);
|
(* ref_cairo_surface) (GdkWindow *window);
|
||||||
|
Loading…
Reference in New Issue
Block a user