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 /tests/gtkoffscreenbox.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 'tests/gtkoffscreenbox.c')
-rw-r--r-- | tests/gtkoffscreenbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gtkoffscreenbox.c b/tests/gtkoffscreenbox.c index 5374c07484..8c025dff05 100644 --- a/tests/gtkoffscreenbox.c +++ b/tests/gtkoffscreenbox.c @@ -629,7 +629,7 @@ gtk_offscreen_box_draw (GtkWidget *widget, gint w, h; gdk_drawable_get_size (offscreen_box->offscreen_window1, &w, &h); - gtk_cairo_paint_flat_box (gtk_widget_get_style (widget), cr, + gtk_paint_flat_box (gtk_widget_get_style (widget), cr, GTK_STATE_NORMAL, GTK_SHADOW_NONE, widget, "blah", 0, 0, w, h); @@ -644,7 +644,7 @@ gtk_offscreen_box_draw (GtkWidget *widget, gint w, h; gdk_drawable_get_size (offscreen_box->offscreen_window2, &w, &h); - gtk_cairo_paint_flat_box (gtk_widget_get_style (widget), cr, + gtk_paint_flat_box (gtk_widget_get_style (widget), cr, GTK_STATE_NORMAL, GTK_SHADOW_NONE, widget, "blah", 0, 0, w, h); |