diff options
author | Benjamin Otte <otte@redhat.com> | 2010-09-11 01:30:27 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-09-26 15:11:42 +0200 |
commit | 1d3f6b30b0100c96adbca9acb6c6cd49b18d2298 (patch) | |
tree | d6e4290f60bc00d89f536694db04482071b4a8a2 /gtk/gtklabel.c | |
parent | 70e6aba0d04c1be1fa8087d972ff82c22e5b2d2b (diff) | |
download | gtk+-1d3f6b30b0100c96adbca9acb6c6cd49b18d2298.tar.gz |
API: Rename gtk_cairo_paint_*() to gtk_paint_*()
Large patch, but just renaming.
Indentation should still mostly be correct because I took care of
keeping the indentation for this function name.
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r-- | gtk/gtklabel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c index 8471ce21c3..45f089a899 100644 --- a/gtk/gtklabel.c +++ b/gtk/gtklabel.c @@ -4081,7 +4081,7 @@ gtk_label_draw (GtkWidget *widget, x -= allocation.x; y -= allocation.y; - gtk_cairo_paint_layout (style, + gtk_paint_layout (style, cr, gtk_widget_get_state (widget), FALSE, @@ -4203,7 +4203,7 @@ gtk_label_draw (GtkWidget *widget, 1); cairo_region_get_extents (clip, &rect); - gtk_cairo_paint_focus (style, cr, gtk_widget_get_state (widget), + gtk_paint_focus (style, cr, gtk_widget_get_state (widget), widget, "label", rect.x, rect.y, rect.width, rect.height); |