diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2006-09-10 20:49:41 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2006-09-10 20:49:41 (GMT) |
commit | b1dbef9886c3bf49050a5f49b9ae9d12021e4b50 (patch) | |
tree | fe67587a09765b41e54254d65f53b6c9352816e9 /addon | |
parent | 7b814d4aaf6321e05503a392c163537fd618066c (diff) | |
download | Doxygen-b1dbef9886c3bf49050a5f49b9ae9d12021e4b50.zip Doxygen-b1dbef9886c3bf49050a5f49b9ae9d12021e4b50.tar.gz Doxygen-b1dbef9886c3bf49050a5f49b9ae9d12021e4b50.tar.bz2 |
Release-1.4.7-20060910
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxyapp/doxyapp.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/addon/doxyapp/doxyapp.cpp b/addon/doxyapp/doxyapp.cpp index 75be1f1..0de169d 100644 --- a/addon/doxyapp/doxyapp.cpp +++ b/addon/doxyapp/doxyapp.cpp @@ -26,6 +26,7 @@ */ #include </usr/include/unistd.h> // ugly hack to get the right unistd.h (doxygen has one too) +#include <stdlib.h> #include "doxygen.h" #include "outputgen.h" #include "parserintf.h" @@ -274,7 +275,7 @@ int main(int argc,char **argv) parseInput(); // iterate over the input files - FileNameListIterator fnli(Doxygen::inputNameList); + FileNameListIterator fnli(*Doxygen::inputNameList); FileName *fn; // foreach file with a certain name for (fnli.toFirst();(fn=fnli.current());++fnli) @@ -289,6 +290,8 @@ int main(int argc,char **argv) } } + // remove temporary files + unlink("/tmp/doxygen/doxygen_objdb.tmp"); // clean up after us rmdir("/tmp/doxygen"); |