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_window.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_window.c')
-rw-r--r--source/blender/windowmanager/intern/wm_window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c
index 2fc941c3d6b..d75ba7865bd 100644
--- a/source/blender/windowmanager/intern/wm_window.c
+++ b/source/blender/windowmanager/intern/wm_window.c
@@ -216,7 +216,7 @@ void wm_window_free(bContext *C, wmWindowManager *wm, wmWindow *win)
/* end running jobs, a job end also removes its timer */
LISTBASE_FOREACH_MUTABLE (wmTimer *, wt, &wm->timers) {
if (wt->win == win && wt->event_type == TIMERJOBS) {
- wm_jobs_timer_ended(wm, wt);
+ wm_jobs_timer_end(wm, wt);
}
}