mirror of
https://github.com/brl/mutter.git
synced 2025-02-20 06:54:10 +00:00
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
|
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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user