Remove ./ from relative paths in online-help.qhp (#2860)
- Fixes the following errors, when opening online-help.qhc using Qt assistant: QTextBrowser: No document for qthelp://cppcheck.sourceforge.net/doc/./preferences.html etc. - Furthermore, ./ is not used anymore in Qt documentation: https://doc.qt.io/qt-5/qtassistant-simpletextviewer-example.html It was used previously: https://doc.qt.io/archives/qt-4.8/qt-help-simpletextviewer-example.html Example: <section title="Find File" ref="./findfile.html"> -> <section title="Find File" ref="findfile.html">
This commit is contained in:
parent
6d4ca8e82f
commit
1f6cb7a54b
|
@ -5,23 +5,23 @@
|
|||
<filterSection>
|
||||
<toc>
|
||||
<section title="Cppcheck GUI help" ref="index.html">
|
||||
<section title="Investigating warnings" ref="./investigating-warnings.html"/>
|
||||
<section title="Preferences" ref="./preferences.html"/>
|
||||
<section title="Project file dialog" ref="./projectfiledialog.html"/>
|
||||
<section title="Severities" ref="./severities.html"/>
|
||||
<section title="Standalone analysis" ref="./standalone-analysis.html"/>
|
||||
<section title="Tagging" ref="./tagging.html"/>
|
||||
<section title="Quick walk through" ref="./walkthrough.html"/>
|
||||
<section title="Investigating warnings" ref="investigating-warnings.html"/>
|
||||
<section title="Preferences" ref="preferences.html"/>
|
||||
<section title="Project file dialog" ref="projectfiledialog.html"/>
|
||||
<section title="Severities" ref="severities.html"/>
|
||||
<section title="Standalone analysis" ref="standalone-analysis.html"/>
|
||||
<section title="Tagging" ref="tagging.html"/>
|
||||
<section title="Quick walk through" ref="walkthrough.html"/>
|
||||
</section>
|
||||
</toc>
|
||||
<keywords>
|
||||
<keyword name="Error" ref="./severities.html"/>
|
||||
<keyword name="Performance" ref="./severities.html"/>
|
||||
<keyword name="Portability" ref="./severities.html"/>
|
||||
<keyword name="Project" ref="./projectfiledialog.html"/>
|
||||
<keyword name="Style" ref="./severities.html"/>
|
||||
<keyword name="Tag" ref="./tagging.html"/>
|
||||
<keyword name="Warning" ref="./severities.html"/>
|
||||
<keyword name="Error" ref="severities.html"/>
|
||||
<keyword name="Performance" ref="severities.html"/>
|
||||
<keyword name="Portability" ref="severities.html"/>
|
||||
<keyword name="Project" ref="projectfiledialog.html"/>
|
||||
<keyword name="Style" ref="severities.html"/>
|
||||
<keyword name="Tag" ref="tagging.html"/>
|
||||
<keyword name="Warning" ref="severities.html"/>
|
||||
</keywords>
|
||||
<files>
|
||||
<file>index.html</file>
|
||||
|
|
Loading…
Reference in New Issue