I have almost gotten QtAssistant working with my application, but not quite.
It opens ok and displays the table of contents, but when you click on a topic, it doesn't open the help file in the right side pane. I think the problem is in the html help in the qhc file - I don't know how to tag the sections there so they can be found. This must be simple, but I can't seem to find an answer.

Here is the qhp file:

Qt Code:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <QtHelpProject version="1.0">
  3. <namespace>K4ELO.net.QtLogger.1_0</namespace>
  4. <virtualFolder>doc</virtualFolder>
  5. <customFilter name="QtLogger 1.0">
  6. </customFilter>
  7. <filterSection>
  8. <toc>
  9. <section title="QtLogger Help" ref="./QtLogger_Help_Index.html">
  10. <section title="Introduction" ref="./QtLogger_Help_Text.html"/>
  11. <section title="Getting Started" ref="QtLogger_Help_Tex./t.html"/>
  12. <section title="Toolbar" ref="./QtLogger_Help_Text.html"/>
  13. </section>
  14. </toc>
  15. <keywords>
  16. <keyword name="Toolbar" ref="./QtLogger_Help_Text.html"/>
  17. </keywords>
  18. <files>
  19. <file>QtLogger_Help_Index.html</file>
  20. <file>QtLogger_Help_Text.html</file>
  21. </files>
  22. </filterSection>
  23. </QtHelpProject>
To copy to clipboard, switch view to plain text mode 

So what needs to be done in the QtLogger_Help_Text file to tag those sections so they can be found from the toc references? Or is that really the problem?