diff options
author | Benjamin Otte <otte@redhat.com> | 2014-06-16 04:28:06 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2014-08-16 19:39:44 +0200 |
commit | 04bf3d1e1fc231275d876b4f472b804f66712618 (patch) | |
tree | 267bd677557628073c939802c0c5999e1263408c /gtk/gtkroundedboxprivate.h | |
parent | 5e8d3d533fc9e33d902fbef5c7e4560bb38d7dcf (diff) | |
download | gtk+-04bf3d1e1fc231275d876b4f472b804f66712618.tar.gz |
roundedbox: Remove functions that take a GtkThemingEngine
Instead, make the functions use a GtkStyleContext argument.
Diffstat (limited to 'gtk/gtkroundedboxprivate.h')
-rw-r--r-- | gtk/gtkroundedboxprivate.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gtk/gtkroundedboxprivate.h b/gtk/gtkroundedboxprivate.h index 6bc96faf81..753c5c237a 100644 --- a/gtk/gtkroundedboxprivate.h +++ b/gtk/gtkroundedboxprivate.h @@ -21,7 +21,7 @@ #include <glib-object.h> #include <cairo.h> #include <gtk/gtkenums.h> -#include <gtk/gtkthemingengine.h> +#include <gtk/gtktypes.h> #include "gtkcsstypesprivate.h" @@ -47,16 +47,13 @@ void _gtk_rounded_box_init_rect (GtkRoundedBox double width, double height); -void _gtk_rounded_box_apply_border_radius_for_engine (GtkRoundedBox *box, - GtkThemingEngine *engine, +void _gtk_rounded_box_apply_border_radius_for_context (GtkRoundedBox *box, + GtkStyleContext *context, GtkJunctionSides junction); -void _gtk_rounded_box_apply_border_radius_for_context (GtkRoundedBox *box, - GtkStyleContext *context, - GtkJunctionSides junction); -void _gtk_rounded_box_apply_outline_radius_for_engine (GtkRoundedBox *box, - GtkThemingEngine *engine, - GtkJunctionSides junction); +void _gtk_rounded_box_apply_outline_radius_for_context (GtkRoundedBox *box, + GtkStyleContext *context, + GtkJunctionSides junction); void _gtk_rounded_box_grow (GtkRoundedBox *box, double top, |