diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-04-29 17:26:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 17:26:11 (GMT) |
commit | b8a3ff6c33264c43cdf30c04baa9793e7e8d51a2 (patch) | |
tree | 9d60ced4b8fceb00c068b56d699c1ba57540d415 /src/qhp.h | |
parent | 4dba9fbdda10889d2285b85b7e9ff6282b34fccf (diff) | |
parent | c6d77227efaf332a5d24bc12d32f4b1fec6b13b9 (diff) | |
download | Doxygen-b8a3ff6c33264c43cdf30c04baa9793e7e8d51a2.zip Doxygen-b8a3ff6c33264c43cdf30c04baa9793e7e8d51a2.tar.gz Doxygen-b8a3ff6c33264c43cdf30c04baa9793e7e8d51a2.tar.bz2 |
Merge branch 'master' into feature/bug_305773
Diffstat (limited to 'src/qhp.h')
-rw-r--r-- | src/qhp.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -3,8 +3,8 @@ * Copyright (C) 2008 Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its - * documentation under the terms of the GNU General Public License is hereby - * granted. No representations are made about the suitability of this software + * documentation under the terms of the GNU General Public License is hereby + * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * @@ -31,15 +31,15 @@ class Qhp : public IndexIntf void finalize(); void incContentsDepth(); void decContentsDepth(); - void addContentsItem(bool isDir, const char * name, const char * ref, - const char * file, const char * anchor, + void addContentsItem(bool isDir, const QCString & name, const QCString & ref, + const QCString & file, const QCString & anchor, bool separateIndex,bool addToNavIndex, const Definition *def); void addIndexItem(const Definition *context, const MemberDef *md, - const char *sectionAnchor, const char *title); - void addIndexFile(const char * name); - void addImageFile(const char * name); - void addStyleSheetFile(const char * name); + const QCString §ionAnchor, const QCString &title); + void addIndexFile(const QCString & name); + void addImageFile(const QCString & name); + void addStyleSheetFile(const QCString & name); // END IndexIntf static QCString getQhpFileName(); @@ -47,8 +47,8 @@ class Qhp : public IndexIntf private: void handlePrevSection(); void clearPrevSection(); - void setPrevSection(const char * title, const char * basename, const char * anchor, int level); - void addFile(const char * fileName); + void setPrevSection(const QCString & title, const QCString & basename, const QCString & anchor, int level); + void addFile(const QCString & fileName); static QCString getFullProjectName(); |