summaryrefslogtreecommitdiffstats
path: root/src/qhp.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-10/+10
| | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()'
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-2/+2
|
* Bug 735145 - QHP toc broken if mainpage with PROJECT_NAME title has ↵Dimitri van Heesch2014-08-241-2/+1
| | | | sections/subpages
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-2/+3
|
* Release-1.8.2-20120930Dimitri van Heesch2012-09-301-1/+2
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-1/+2
|
* Release-1.7.5.1-20110925Dimitri van Heesch2011-09-251-1/+2
|
* Release-1.7.1-20100728Dimitri van Heesch2010-07-281-5/+1
|
* Release-1.6.1-20091027Dimitri van Heesch2009-10-271-5/+7
|
* Release-1.5.9-20090622Dimitri van Heesch2009-06-221-0/+3
|
* Release-1.5.7.1-20081012Dimitri van Heesch2008-10-121-8/+10
|
* Release-1.5.7Dimitri van Heesch2008-09-281-0/+65