diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-08 18:36:07 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-08 18:36:07 (GMT) |
commit | 6e9c313b87a0daa86ca108e93d67fc4c9e5bec68 (patch) | |
tree | 918babf3afc522698cc5ff63bd28ff5f8897964a /src/instdox.cpp | |
parent | 5620fa248663fa5ee8b2d8a26d773df60c2a4994 (diff) | |
download | Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.zip Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.tar.gz Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.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 << ", "; } |