summaryrefslogtreecommitdiff
path: root/gtk/gtktextdisplay.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-09-11 01:54:48 +0200
committerBenjamin Otte <otte@redhat.com>2010-09-26 15:11:43 +0200
commit67284a57de3a3fa8054c6bcc88bea0b688d5908b (patch)
tree3eff32cc555022b81d9d058c9f55913b23747f12 /gtk/gtktextdisplay.c
parent1d3f6b30b0100c96adbca9acb6c6cd49b18d2298 (diff)
downloadgtk+-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.c6
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;
}