summaryrefslogtreecommitdiffstats
path: root/src/docgroup.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-16/+16
| | | | | | | | | | | | | | | | | 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: replace Doxygen::memGrpInfoDict by Doxygen::memberGroupInfoMapDimitri van Heesch2020-12-301-19/+22
|
* Move DocGroup inside CommentScanner instead of using a globalDimitri van Heesch2020-01-261-6/+5
|
* Replaced QList<Grouping> with std::vector<Grouping>Dimitri van Heesch2019-10-291-11/+10
|
* Use smartpointers to manage the lifetime of Entry objectsDimitri van Heesch2019-10-071-0/+15
|
* Regression: unbalanced grouping commandsalbert-github2019-08-021-7/+10
| | | | | | 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-2/+2
| | | | https://github.com/albert-github/doxygen into albert-github-feature/regr_7105_2
* Merge branch 'feature/regr_7105' of https://github.com/albert-github/doxygen ↵Dimitri van Heesch2019-07-301-2/+5
| | | | into albert-github-feature/regr_7105
* Fix naming and indenting.Dimitri van Heesch2019-07-271-70/+70
|
* take doc group out of commentscan.lAdrian Negreanu2019-07-261-0/+209
Signed-off-by: Adrian Negreanu <groleo@gmail.com>