[Bf-blender-cvs] [c1768507a9b] master: Correct naming in 97414fb484fe37b8da69a2b570a659535bbf2a0f

Campbell Barton noreply at git.blender.org
Tue Oct 25 04:25:46 CEST 2022


Commit: c1768507a9b5cd1606f4d8b9f61a46f0015761a4
Author: Campbell Barton
Date:   Tue Oct 25 13:24:56 2022 +1100
Branches: master
https://developer.blender.org/rBc1768507a9b5cd1606f4d8b9f61a46f0015761a4

Correct naming in 97414fb484fe37b8da69a2b570a659535bbf2a0f

===================================================================

M	intern/ghost/intern/GHOST_SystemWayland.cpp

===================================================================

diff --git a/intern/ghost/intern/GHOST_SystemWayland.cpp b/intern/ghost/intern/GHOST_SystemWayland.cpp
index 65b4e890d88..ea2975d1c19 100644
--- a/intern/ghost/intern/GHOST_SystemWayland.cpp
+++ b/intern/ghost/intern/GHOST_SystemWayland.cpp
@@ -790,14 +790,14 @@ using GWL_RegistryHandler_AddFn = void (*)(GWL_Display *display,
  * Otherwise it can be assumed that all objects will be freed and none will be used again,
  * so there is no need to ensure a valid state.
  */
-using GWL_RegistryEntry_FreeFn = void (*)(GWL_Display *display, void *user_data, bool on_exit);
+using GWL_RegistryEntry_RemoveFn = void (*)(GWL_Display *display, void *user_data, bool on_exit);
 
 struct GWL_RegistryHandler {
   /** Pointer to the name (not the name it's self), needed as the values aren't set on startup. */
   const char *const *interface_p = nullptr;
 
   GWL_RegistryHandler_AddFn add_fn = nullptr;
-  GWL_RegistryEntry_FreeFn remove_fn = nullptr;
+  GWL_RegistryEntry_RemoveFn remove_fn = nullptr;
 };
 
 /** \} */



More information about the Bf-blender-cvs mailing list