diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-08-01 16:34:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-01 16:34:13 (GMT) |
commit | 1c2acccbe1a1f348c5741036289f630e54c3f771 (patch) | |
tree | 1411ff947a23aeb9a79092a1df5a9af28e25d6f5 /src/htmlhelp.cpp | |
parent | b2a69f2504808f5cc62105eeb08dbb5d9689b82c (diff) | |
parent | 71f92321cf6e2c88b1ce01e6ff6cfe73651e8022 (diff) | |
download | Doxygen-1c2acccbe1a1f348c5741036289f630e54c3f771.zip Doxygen-1c2acccbe1a1f348c5741036289f630e54c3f771.tar.gz Doxygen-1c2acccbe1a1f348c5741036289f630e54c3f771.tar.bz2 |
Merge pull request #7938 from albert-github/feature/bug_warn_comp_htmlhelp
Compiler warning in htmlhelp.cpp
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r-- | src/htmlhelp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index f5856e5..0c580a5 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -470,8 +470,8 @@ void HtmlHelp::createProjectFile() { FTextStream t(&f); - char *hhcFile = "\"index.hhc\""; - char *hhkFile = "\"index.hhk\""; + const char *hhcFile = "\"index.hhc\""; + const char *hhkFile = "\"index.hhk\""; int hhkPresent = index->dictCount(); if (!ctsItemPresent) hhcFile = ""; if (!hhkPresent) hhkFile = ""; |