diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-13 20:51:57 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-20 18:01:10 +0100 |
commit | fa9b0f9965d51327139745a2536a7f2fb002b01d (patch) | |
tree | fdf196cf779db55ab467a707c0cae95e0fcd9119 /gtk/gtkroundedbox.c | |
parent | e26f84fca0446eebea1cfc5606ac5541db6bfcd6 (diff) | |
download | gtk+-fa9b0f9965d51327139745a2536a7f2fb002b01d.tar.gz |
roundedbox: Remove _gtk_rounded_box_move()
Use gsk_rounded_rect_offset() instead.
Diffstat (limited to 'gtk/gtkroundedbox.c')
-rw-r--r-- | gtk/gtkroundedbox.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk/gtkroundedbox.c b/gtk/gtkroundedbox.c index adcced91ad..8231db45a0 100644 --- a/gtk/gtkroundedbox.c +++ b/gtk/gtkroundedbox.c @@ -213,15 +213,6 @@ _gtk_rounded_box_shrink (GskRoundedRect *box, _gtk_rounded_box_grow (box, -top, -right, -bottom, -left); } -void -_gtk_rounded_box_move (GskRoundedRect *box, - double dx, - double dy) -{ - box->bounds.origin.x += dx; - box->bounds.origin.y += dy; -} - typedef struct { double angle1; double angle2; |