Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-10-25 05:24:56 +0300
committerCampbell Barton <campbell@blender.org>2022-10-25 05:24:56 +0300
commitc1768507a9b5cd1606f4d8b9f61a46f0015761a4 (patch)
tree595a7b0b9f3e505e5e550f774b8eeb26bdf8cc06 /intern/ghost
parent97414fb484fe37b8da69a2b570a659535bbf2a0f (diff)
Correct naming in 97414fb484fe37b8da69a2b570a659535bbf2a0f
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_SystemWayland.cpp4
1 files changed, 2 insertions, 2 deletions
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;
};
/** \} */