Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Some fixes for template.cpp and improve the template output | Dimitri van Heesch | 2021-05-14 | 1 | -1/+1 |
| | |||||
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | 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: make qcstring.h a local include | Dimitri van Heesch | 2021-03-26 | 1 | -1/+1 |
| | |||||
* | Modernize code for the resource manager | Dimitri van Heesch | 2020-08-02 | 1 | -2/+5 |
| | |||||
* | Replaced bitmap of doxygen logo by SVG version | Dimitri van Heesch | 2020-07-18 | 1 | -1/+1 |
| | |||||
* | Added generating template files and reading templates from disk if present | Dimitri van Heesch | 2016-05-28 | 1 | -2/+2 |
| | |||||
* | Avoid using Resource::data as string, as it is not null terminated. | Dimitri van Heesch | 2015-08-31 | 1 | -3/+3 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Introduced template directory for template and resource files and resource ↵ | Dimitri van Heesch | 2014-11-13 | 1 | -0/+63 |
compiler & manager |