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_jobs.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_jobs.c')
-rw-r--r--source/blender/windowmanager/intern/wm_jobs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_jobs.c b/source/blender/windowmanager/intern/wm_jobs.c
index cf45d380c48..1cddc019ff8 100644
--- a/source/blender/windowmanager/intern/wm_jobs.c
+++ b/source/blender/windowmanager/intern/wm_jobs.c
@@ -605,7 +605,7 @@ void WM_jobs_kill(wmWindowManager *wm,
}
/* kill job entirely, also removes timer itself */
-void wm_jobs_timer_ended(wmWindowManager *wm, wmTimer *wt)
+void wm_jobs_timer_end(wmWindowManager *wm, wmTimer *wt)
{
LISTBASE_FOREACH (wmJob *, wm_job, &wm->jobs) {
if (wm_job->wt == wt) {