summaryrefslogtreecommitdiff
path: root/modules/engines
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-08-16 22:10:00 +0200
committerBenjamin Otte <otte@redhat.com>2010-09-26 15:02:58 +0200
commite1544bcc7fcb03ab970bf7221d998ccdf0f592a9 (patch)
treee3cb67ddd43f163aaa7df37151cf716a1068c863 /modules/engines
parentf2dc8a26ed62b9bf8eff440e6c811908bb11cc00 (diff)
downloadgtk+-e1544bcc7fcb03ab970bf7221d998ccdf0f592a9.tar.gz
style: Convert draw_tab vfunc to Cairo version
Diffstat (limited to 'modules/engines')
-rw-r--r--modules/engines/pixbuf/pixbuf-draw.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/modules/engines/pixbuf/pixbuf-draw.c b/modules/engines/pixbuf/pixbuf-draw.c
index 8e6bc84b68..2cfae28a26 100644
--- a/modules/engines/pixbuf/pixbuf-draw.c
+++ b/modules/engines/pixbuf/pixbuf-draw.c
@@ -741,10 +741,9 @@ draw_option (GtkStyle *style,
static void
draw_tab (GtkStyle *style,
- GdkWindow *window,
+ cairo_t *cr,
GtkStateType state,
GtkShadowType shadow,
- GdkRectangle *area,
GtkWidget *widget,
const gchar *detail,
gint x,
@@ -754,18 +753,15 @@ draw_tab (GtkStyle *style,
{
ThemeMatchData match_data;
- g_return_if_fail(style != NULL);
- g_return_if_fail(window != NULL);
-
match_data.function = TOKEN_D_TAB;
match_data.detail = (gchar *)detail;
match_data.flags = THEME_MATCH_SHADOW | THEME_MATCH_STATE;
match_data.shadow = shadow;
match_data.state = state;
- if (!draw_simple_image_no_cairo (style, window, area, widget, &match_data, TRUE, TRUE,
+ if (!draw_simple_image (style, cr, widget, &match_data, TRUE, TRUE,
x, y, width, height))
- parent_class->draw_tab (style, window, state, shadow, area, widget, detail,
+ parent_class->draw_tab (style, cr, state, shadow, widget, detail,
x, y, width, height);
}