diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-13 20:48:58 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-20 18:01:10 +0100 |
commit | e26f84fca0446eebea1cfc5606ac5541db6bfcd6 (patch) | |
tree | acc99b07539dda7be6126cc3d64377ad9b32fdc2 /gtk/gtkrenderbackground.c | |
parent | a2dfb1e93f7356d3d787429a382260660d714c26 (diff) | |
download | gtk+-e26f84fca0446eebea1cfc5606ac5541db6bfcd6.tar.gz |
gtk: Remove GtkRoundedBox struct
Use GskRoundedRect instead.
Diffstat (limited to 'gtk/gtkrenderbackground.c')
-rw-r--r-- | gtk/gtkrenderbackground.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkrenderbackground.c b/gtk/gtkrenderbackground.c index 4ef6ccd187..b4091f6804 100644 --- a/gtk/gtkrenderbackground.c +++ b/gtk/gtkrenderbackground.c @@ -52,7 +52,7 @@ typedef struct _GtkThemingBackground GtkThemingBackground; struct _GtkThemingBackground { GtkCssStyle *style; - GtkRoundedBox boxes[N_BOXES]; + GskRoundedRect boxes[N_BOXES]; }; static void @@ -115,7 +115,7 @@ gtk_theming_background_paint_layer (GtkThemingBackground *bg, const GtkCssValue *pos, *repeat; GtkCssImage *image; GtkCssBlendMode blend_mode; - const GtkRoundedBox *origin; + const GskRoundedRect *origin; double image_width, image_height; double width, height; |