forked from AuroraMiddleware/gtk
GtkTextView: Change draw_layer signature
Vfuncs should really take 'this' of the right type - the type that the vfunc is added in.
This commit is contained in:
parent
fc09560d13
commit
7450277708
@ -5328,12 +5328,12 @@ draw_text (cairo_t *cr,
|
||||
gtk_style_context_restore (context);
|
||||
|
||||
if (GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer != NULL)
|
||||
GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer (widget, GTK_TEXT_VIEW_LAYER_BELOW, cr);
|
||||
GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer (text_view, GTK_TEXT_VIEW_LAYER_BELOW, cr);
|
||||
|
||||
gtk_text_view_paint (widget, cr);
|
||||
|
||||
if (GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer != NULL)
|
||||
GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer (widget, GTK_TEXT_VIEW_LAYER_ABOVE, cr);
|
||||
GTK_TEXT_VIEW_GET_CLASS (text_view)->draw_layer (text_view, GTK_TEXT_VIEW_LAYER_ABOVE, cr);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -139,8 +139,8 @@ struct _GtkTextViewClass
|
||||
|
||||
GtkTextBuffer * (* create_buffer) (GtkTextView *text_view);
|
||||
|
||||
void (* draw_layer) (GtkWidget *widget,
|
||||
GtkTextViewLayer layer,
|
||||
void (* draw_layer) (GtkTextView *text_view,
|
||||
GtkTextViewLayer layer,
|
||||
cairo_t *cr);
|
||||
|
||||
/* Padding for future expansion */
|
||||
|
Loading…
Reference in New Issue
Block a user