summaryrefslogtreecommitdiffstats
path: root/src/cite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cite.cpp')
-rw-r--r--src/cite.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cite.cpp b/src/cite.cpp
index 5612eb4..91dd1e1 100644
--- a/src/cite.cpp
+++ b/src/cite.cpp
@@ -204,7 +204,7 @@ void CiteDict::generatePage() const
}
}
- QCString oldDir = convertToQCString(QDir::currentDirPath());
+ QCString oldDir = QDir::currentDirPath().utf8();
QDir::setCurrent(outputDir);
// 5. run bib2xhtml perl script on the generated file which will insert the
@@ -292,13 +292,13 @@ void CiteDict::generatePage() const
}
// 9. Remove temporary files
- //thisDir.remove(citeListFile);
- //thisDir.remove(doxygenBstFile);
- //thisDir.remove(bib2xhtmlFile);
- //while (!tempFiles.isEmpty())
- //{
- // QCString *s=tempFiles.take();
- // thisDir.remove(*s);
- //}
+ thisDir.remove(citeListFile);
+ thisDir.remove(doxygenBstFile);
+ thisDir.remove(bib2xhtmlFile);
+ while (!tempFiles.isEmpty())
+ {
+ QCString *s=tempFiles.take();
+ thisDir.remove(*s);
+ }
}