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/wm.h
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/wm.h')
-rw-r--r--source/blender/windowmanager/wm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h
index c26acfc9802..a8009282f62 100644
--- a/source/blender/windowmanager/wm.h
+++ b/source/blender/windowmanager/wm.h
@@ -71,11 +71,11 @@ void wm_tweakevent_test(bContext *C, const wmEvent *event, int action);
/* wm_jobs.c */
void wm_jobs_timer(wmWindowManager *wm, wmTimer *wt);
-void wm_jobs_timer_ended(wmWindowManager *wm, wmTimer *wt);
+void wm_jobs_timer_end(wmWindowManager *wm, wmTimer *wt);
/* wm_files.c */
void wm_autosave_timer(struct Main *bmain, wmWindowManager *wm, wmTimer *wt);
-void wm_autosave_timer_ended(wmWindowManager *wm);
+void wm_autosave_timer_end(wmWindowManager *wm);
void wm_autosave_delete(void);
void wm_autosave_read(bContext *C, struct ReportList *reports);
void wm_autosave_location(char *filepath);