]> git.lyx.org Git - features.git/commitdiff
Handle endnotes aux file in removeAuxiliaryFiles()
authorJuergen Spitzmueller <spitz@lyx.org>
Sat, 17 Aug 2019 07:32:15 +0000 (09:32 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 13:48:44 +0000 (15:48 +0200)
src/LaTeX.cpp

index 4606ed3f4571c05c36c4dcc26d3f6c788af52861..4096ca9f63600ea7b5c568aa963d3a4ad63bf38a 100644 (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();