summaryrefslogtreecommitdiffstats
path: root/src/docgroup.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-6/+6
| | | | | | | | | | | | | | | | | 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()'
* Refactoring: some cleanup and removed text direction logicDimitri van Heesch2021-03-041-3/+2
|
* Move DocGroup inside CommentScanner instead of using a globalDimitri van Heesch2020-01-261-1/+1
|
* Coverity uninitializedalbert-github2019-12-021-2/+2
| | | | Fixing a number of uninitialized variables based on the coverity output of November 30, 2019
* Replaced QList<Grouping> with std::vector<Grouping>Dimitri van Heesch2019-10-291-2/+2
|
* Fixed typoDimitri van Heesch2019-08-021-1/+1
|
* Regression: unbalanced grouping commandsalbert-github2019-08-021-1/+1
| | | | | | Regression on #7122 (and #7115 / #7116). When having multiple consecutive `\name` sections the warning "unbalanced grouping commands" appears Analogous to the open command also the close command needs an implicit argument.
* Merge branch 'feature/regr_7105_2' of ↵Dimitri van Heesch2019-07-301-1/+1
| | | | https://github.com/albert-github/doxygen into albert-github-feature/regr_7105_2
* Fix naming and indenting.Dimitri van Heesch2019-07-271-23/+23
|
* take doc group out of commentscan.lAdrian Negreanu2019-07-261-0/+54
Signed-off-by: Adrian Negreanu <groleo@gmail.com>