diff options
author | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:23:29 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:32:51 +0200 |
commit | 12683da8f74e847392fff32d4b06dd2c50baa37c (patch) | |
tree | 2d340c4f85871d60404e6911062e6d08b54a83fc /gtk/gtkcssimage.c | |
parent | 48c6b3b4f4c7eaf99e10302d17e78838f1eac010 (diff) | |
download | gtk+-12683da8f74e847392fff32d4b06dd2c50baa37c.tar.gz |
gtk: Make functions static that don't need to be non-static
Also remove the starting underscore from function names where
appropriate, as those functions are static now and not exported anymore.
This is part of a bunch of fixes for gcc complaining about
-Wmissing-declarations.
Diffstat (limited to 'gtk/gtkcssimage.c')
-rw-r--r-- | gtk/gtkcssimage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcssimage.c b/gtk/gtkcssimage.c index 999c54889d..924dc2ad2e 100644 --- a/gtk/gtkcssimage.c +++ b/gtk/gtkcssimage.c @@ -69,7 +69,7 @@ gtk_css_image_real_compute (GtkCssImage *image, return g_object_ref (image); } -GtkCssImage * +static GtkCssImage * gtk_css_image_real_transition (GtkCssImage *start, GtkCssImage *end, guint property_id, @@ -375,7 +375,7 @@ _gtk_css_image_get_surface (GtkCssImage *image, return result; } -GType +static GType gtk_css_image_get_parser_type (GtkCssParser *parser) { static const struct { |