kms: Fix function name

meta_kms_update_process_..() makes it sound like it's a MetaKmsUpdate
function called update_..() but in fact it's a MetaKms function that
calls the corresponding process-update impl function. Clear up this
naming confusion.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/930
This commit is contained in:
Jonas Ådahl 2019-11-08 23:49:26 +01:00
parent ec9d7145c8
commit ee854ed7ab

View File

@ -202,7 +202,7 @@ meta_kms_predict_states_in_impl (MetaKms *kms,
} }
static gpointer static gpointer
meta_kms_update_process_in_impl (MetaKmsImpl *impl, meta_kms_process_update_in_impl (MetaKmsImpl *impl,
gpointer user_data, gpointer user_data,
GError **error) GError **error)
{ {
@ -229,7 +229,7 @@ meta_kms_post_update_sync (MetaKms *kms,
"KMS (post update)"); "KMS (post update)");
ret = meta_kms_run_impl_task_sync (kms, ret = meta_kms_run_impl_task_sync (kms,
meta_kms_update_process_in_impl, meta_kms_process_update_in_impl,
update, update,
error); error);
return GPOINTER_TO_INT (ret); return GPOINTER_TO_INT (ret);