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:
parent
ec9d7145c8
commit
ee854ed7ab
@ -202,7 +202,7 @@ meta_kms_predict_states_in_impl (MetaKms *kms,
|
||||
}
|
||||
|
||||
static gpointer
|
||||
meta_kms_update_process_in_impl (MetaKmsImpl *impl,
|
||||
meta_kms_process_update_in_impl (MetaKmsImpl *impl,
|
||||
gpointer user_data,
|
||||
GError **error)
|
||||
{
|
||||
@ -229,7 +229,7 @@ meta_kms_post_update_sync (MetaKms *kms,
|
||||
"KMS (post update)");
|
||||
|
||||
ret = meta_kms_run_impl_task_sync (kms,
|
||||
meta_kms_update_process_in_impl,
|
||||
meta_kms_process_update_in_impl,
|
||||
update,
|
||||
error);
|
||||
return GPOINTER_TO_INT (ret);
|
||||
|
Loading…
Reference in New Issue
Block a user