Cleanup: use _ex suffix instead of _ext

Convention is to use ex, not ext for extended
versions of a functions.
This commit is contained in:
2019-08-01 18:34:52 +10:00
parent 502c2c233d
commit b5b0804c5a
5 changed files with 9 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ static PyObject *bpy_atexit(PyObject *UNUSED(self), PyObject *UNUSED(args), PyOb
/* close down enough of blender at least not to crash */
struct bContext *C = BPy_GetContext();
WM_exit_ext(C, 0);
WM_exit_ex(C, false);
Py_RETURN_NONE;
}