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:
Wolfgang Stöggl 2020-10-26 10:07:47 +01:00 committed by GitHub
parent 6d4ca8e82f
commit 1f6cb7a54b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 14 deletions

View File

@ -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>