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 <ideasman42@gmail.com>2021-03-15 06:06:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-15 06:48:17 +0300
commit6cd15203788b80ab45cb2e7503de42e665a70869 (patch)
treeaf292ff255a5ac684bb3fa357b7ab6a46a5e90a6 /source/blender/windowmanager/intern/wm.c
parent88b24bc6bbbf35bde00c55834330b56708f25897 (diff)
Cleanup: replace 'timer_ended' with 'timer_end'
The previous naming made it seem as if the timer had already ended where as this function ends the timers.
Diffstat (limited to 'source/blender/windowmanager/intern/wm.c')
-rw-r--r--source/blender/windowmanager/intern/wm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm.c b/source/blender/windowmanager/intern/wm.c
index 3f1bbb7a669..ae5b6c468f7 100644
--- a/source/blender/windowmanager/intern/wm.c
+++ b/source/blender/windowmanager/intern/wm.c
@@ -570,7 +570,7 @@ void wm_add_default(Main *bmain, bContext *C)
void wm_close_and_free(bContext *C, wmWindowManager *wm)
{
if (wm->autosavetimer) {
- wm_autosave_timer_ended(wm);
+ wm_autosave_timer_end(wm);
}
#ifdef WITH_XR_OPENXR