Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -10/+13 |
| | | | | | | | | | | | | | | | | | 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()' | ||||
* | Split language parser into "outline parser" and "code parser" | Dimitri van Heesch | 2019-12-03 | 1 | -1/+1 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -2/+2 |
| | |||||
* | Code with "extension" unparsed shows line numbers | albert-github | 2016-08-30 | 1 | -3/+3 |
| | | | | | | | | | | | | | When using a code fragment in "regular" documentation like: @code This is a code fragment @endcode this is shown without line numbers but when using {unparsed} or another unknown extension, so @code{unparsed} This is a code fragment @endcode line numbers were shown. (similar for the markdown fenced block). | ||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Bug 734704 Sigsegv while generating XML output | Dimitri van Heesch | 2014-08-13 | 1 | -1/+1 |
| | |||||
* | Bug 734099 - Add support for non-parsed language | Dimitri van Heesch | 2014-08-04 | 1 | -0/+51 |