Change usage of global definitions in the QtHelp generator.

Sat, 15 Oct 2016 14:17:42 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 15 Oct 2016 14:17:42 +0200
changeset 5233
1b31a9acc22d
parent 5232
496d4857f690
child 5234
dc9281cba492

Change usage of global definitions in the QtHelp generator.

DocumentationTools/QtHelpGenerator.py file | annotate | diff | comparison | revisions
--- a/DocumentationTools/QtHelpGenerator.py	Fri Oct 14 20:05:30 2016 +0200
+++ b/DocumentationTools/QtHelpGenerator.py	Sat Oct 15 14:17:42 2016 +0200
@@ -274,7 +274,7 @@
         os.chdir(self.htmlDir)
         subprocess.call([
             os.path.join(getQtBinariesPath(), "qhelpgenerator"),
-            "source.qhp", "-o", os.path.join(self.outputDir, HelpHelpFile)])
+            HelpProjectFile, "-o", os.path.join(self.outputDir, HelpHelpFile)])
         os.remove(HelpProjectFile)
         
         if self.createCollection:
@@ -284,6 +284,6 @@
             os.chdir(self.outputDir)
             subprocess.call([
                 os.path.join(getQtBinariesPath(), "qcollectiongenerator"),
-                "source.qhcp", "-o", "collection.qhc"])
+                HelpCollectionProjectFile, "-o", HelpCollectionFile])
         
         os.chdir(cwd)

eric ide

mercurial