Remove an unused pointer from GtkDrawingArea

This is part of removing all sealed members from instance structures.
This commit is contained in:
Matthias Clasen 2010-12-17 20:54:13 -05:00
parent 7b665316cf
commit 841edfe8c3
2 changed files with 0 additions and 3 deletions

View File

@ -48,7 +48,6 @@ gtk_drawing_area_class_init (GtkDrawingAreaClass *class)
static void
gtk_drawing_area_init (GtkDrawingArea *darea)
{
darea->draw_data = NULL;
}

View File

@ -51,8 +51,6 @@ typedef struct _GtkDrawingAreaClass GtkDrawingAreaClass;
struct _GtkDrawingArea
{
GtkWidget widget;
gpointer GSEAL (draw_data);
};
struct _GtkDrawingAreaClass