summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixbuf-io.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2019-09-11 09:56:31 -0500
committerEmmanuele Bassi <ebassi@gmail.com>2020-01-07 14:23:05 +0000
commit3a445ad9b0b1f8e89e384cba2b7b618dd3a0f6dc (patch)
treed6e043a0d88a666aa37bd9604c456993fe0322e2 /gdk-pixbuf/gdk-pixbuf-io.h
parentf0aaf05389490d44c50ba3088e7de8d662fa3d2e (diff)
downloadgdk-pixbuf-3a445ad9b0b1f8e89e384cba2b7b618dd3a0f6dc.tar.gz
loaders: Make the names of prepared_func and updated_func consistent
They were prepare_func/prepared_func, and update_func/updated_func in various places. Since their corresponding type names are GdkPixbufModulePreparedFunc and GdkPixbufModuleUpdatedFunc, make all the fields be called prepared_func and updated_func to make them easier to grep.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.h')
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.h b/gdk-pixbuf/gdk-pixbuf-io.h
index 66074bc69..89b0830e1 100644
--- a/gdk-pixbuf/gdk-pixbuf-io.h
+++ b/gdk-pixbuf/gdk-pixbuf-io.h
@@ -250,8 +250,8 @@ struct _GdkPixbufModule {
/* Incremental loading */
gpointer (* begin_load) (GdkPixbufModuleSizeFunc size_func,
- GdkPixbufModulePreparedFunc prepare_func,
- GdkPixbufModuleUpdatedFunc update_func,
+ GdkPixbufModulePreparedFunc prepared_func,
+ GdkPixbufModuleUpdatedFunc updated_func,
gpointer user_data,
GError **error);
gboolean (* stop_load) (gpointer context,