diff options
author | Benjamin Otte <otte@redhat.com> | 2012-04-03 18:41:25 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-07 13:01:25 +0200 |
commit | df37446f9b4116887865b7ecfddeb535fbc0eacb (patch) | |
tree | 8b9e41c28a7d3f2523b9d5e2a67154faca285359 /gtk/gtktextdisplay.h | |
parent | 7a7e2ed92b3427b71c8f2511440d3ff571b2a5d8 (diff) | |
download | gtk+-df37446f9b4116887865b7ecfddeb535fbc0eacb.tar.gz |
textview: Remove extra magic for drawing children
Instead, just draw the children. The cairo code will keep track of
things, so there's no need to track things.
Also, the old code was doing it wrong.
https://bugzilla.gnome.org/show_bug.cgi?id=672544
Diffstat (limited to 'gtk/gtktextdisplay.h')
-rw-r--r-- | gtk/gtktextdisplay.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtktextdisplay.h b/gtk/gtktextdisplay.h index 3f130b4ba9..c35b133567 100644 --- a/gtk/gtktextdisplay.h +++ b/gtk/gtktextdisplay.h @@ -92,8 +92,7 @@ G_BEGIN_DECLS */ void gtk_text_layout_draw (GtkTextLayout *layout, GtkWidget *widget, - cairo_t *cr, - GList **widgets); + cairo_t *cr); G_END_DECLS |