diff options
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 << ", "; } |