diff options
Diffstat (limited to 'gtk/gtkpicture.c')
-rw-r--r-- | gtk/gtkpicture.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkpicture.c b/gtk/gtkpicture.c index 31d814e381..a60f7c626d 100644 --- a/gtk/gtkpicture.c +++ b/gtk/gtkpicture.c @@ -541,13 +541,13 @@ gtk_picture_new_for_resource (const char *resource_path) } typedef struct { - gint scale_factor; + int scale_factor; } LoaderData; static void on_loader_size_prepared (GdkPixbufLoader *loader, - gint width, - gint height, + int width, + int height, gpointer user_data) { LoaderData *loader_data = user_data; @@ -568,7 +568,7 @@ on_loader_size_prepared (GdkPixbufLoader *loader, static GdkPaintable * load_scalable_with_loader (GFile *file, - gint scale_factor) + int scale_factor) { GdkPixbufLoader *loader; GBytes *bytes; |