diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-02-08 18:36:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-02-08 18:36:07 (GMT) |
commit | 19119105076ca1b361b11b49df61050879c1e054 (patch) | |
tree | 918babf3afc522698cc5ff63bd28ff5f8897964a /src/instdox.cpp | |
parent | ea50604595d368f3b9a63a3dbfe55d984986abb0 (diff) | |
download | Doxygen-19119105076ca1b361b11b49df61050879c1e054.zip Doxygen-19119105076ca1b361b11b49df61050879c1e054.tar.gz Doxygen-19119105076ca1b361b11b49df61050879c1e054.tar.bz2 |
mods for doxygen-1.0.0
Diffstat (limited to 'src/instdox.cpp')
-rw-r--r-- | src/instdox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/instdox.cpp b/src/instdox.cpp index 5194fa2..53b9f2e 100644 --- a/src/instdox.cpp +++ b/src/instdox.cpp @@ -50,7 +50,8 @@ void writeInstallScript() { fileName = tagLine; } - t << "\"" << fileName << "\", \"\""; + QFileInfo fi(fileName); + t << "\"" << fi.fileName() << "\", \"\""; s=Config::tagFileList.next(); if (s) t << ", "; } |