diff options
author | Benjamin Otte <otte@redhat.com> | 2012-03-23 23:23:30 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-17 08:59:10 +0200 |
commit | 5bbf59b519e66b6420ec47298f5cce49bc341a52 (patch) | |
tree | 57841d072da23a0269e5bffe5c5015d75802eff8 /gtk/gtkthemingbackground.c | |
parent | 4a12717e4d9d07c923c380747acc37278bbc9568 (diff) | |
download | gtk+-5bbf59b519e66b6420ec47298f5cce49bc341a52.tar.gz |
cssvalue: Constify a bunch of APIs
Diffstat (limited to 'gtk/gtkthemingbackground.c')
-rw-r--r-- | gtk/gtkthemingbackground.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkthemingbackground.c b/gtk/gtkthemingbackground.c index 89d0acc652..fee8606525 100644 --- a/gtk/gtkthemingbackground.c +++ b/gtk/gtkthemingbackground.c @@ -161,8 +161,8 @@ _gtk_theming_background_paint (GtkThemingBackground *bg, && bg->image_rect.height > 0) { GtkCssBackgroundRepeat hrepeat, vrepeat; - GtkCssBackgroundSize *size; - GtkCssBackgroundPosition *pos; + const GtkCssBackgroundSize *size; + const GtkCssBackgroundPosition *pos; double image_width, image_height; double width, height; |