forked from AuroraMiddleware/gtk
Reserve space for a pointer in GtkDrawingArea
It was pointed out that this will let us add a private pointer without abi break in the future, should we ever need one.
This commit is contained in:
parent
3e08a23237
commit
96d1c2c46e
@ -51,6 +51,9 @@ typedef struct _GtkDrawingAreaClass GtkDrawingAreaClass;
|
||||
struct _GtkDrawingArea
|
||||
{
|
||||
GtkWidget widget;
|
||||
|
||||
/*< private >*/
|
||||
gpointer dummy;
|
||||
};
|
||||
|
||||
struct _GtkDrawingAreaClass
|
||||
|
Loading…
Reference in New Issue
Block a user