mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Handle endnotes aux file in removeAuxiliaryFiles()
This commit is contained in:
parent
58cf1c5345
commit
762ba6a3c8
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user