diff options
author | Benjamin Otte <otte@redhat.com> | 2010-09-11 01:54:48 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-09-26 15:11:43 +0200 |
commit | 67284a57de3a3fa8054c6bcc88bea0b688d5908b (patch) | |
tree | 3eff32cc555022b81d9d058c9f55913b23747f12 /gtk/gtktextdisplay.c | |
parent | 1d3f6b30b0100c96adbca9acb6c6cd49b18d2298 (diff) | |
download | gtk+-67284a57de3a3fa8054c6bcc88bea0b688d5908b.tar.gz |
API: Get rid of gtk_draw_insertion_cursor()
and rename gtk_cairo_draw_insertion_cursor() to
gtk_draw_insertion_cursor().
Diffstat (limited to 'gtk/gtktextdisplay.c')
-rw-r--r-- | gtk/gtktextdisplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktextdisplay.c b/gtk/gtktextdisplay.c index 1f4e5580fc..93be053064 100644 --- a/gtk/gtktextdisplay.c +++ b/gtk/gtktextdisplay.c @@ -924,9 +924,9 @@ gtk_text_layout_draw (GtkTextLayout *layout, cursor_location.width = 0; cursor_location.height = cursor->height; - gtk_cairo_draw_insertion_cursor (widget, cr, &cursor_location, - cursor->is_strong, - dir, have_strong && have_weak); + gtk_draw_insertion_cursor (widget, cr, &cursor_location, + cursor->is_strong, + dir, have_strong && have_weak); cursor_list = cursor_list->next; } |