Handle endnotes aux file in removeAuxiliaryFiles()

This commit is contained in:
Juergen Spitzmueller 2019-08-17 09:32:15 +02:00
parent 58cf1c5345
commit 762ba6a3c8

View File

@ -161,6 +161,10 @@ void LaTeX::removeAuxiliaryFiles() const
FileName const gls(changeExtension(file.absFileName(), ".gls"));
gls.removeFile();
// endnotes file
FileName const ent(changeExtension(file.absFileName(), ".ent"));
ent.removeFile();
// Also remove the aux file
FileName const aux(changeExtension(file.absFileName(), ".aux"));
aux.removeFile();