Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | 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 |
| | |||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -2/+0 |
| | |||||
* | bug 668003 Default LaTeX header misses $-placeholders | albert-github | 2021-01-05 | 1 | -3/+2 |
| | | | | Create, analogous to HTML, also for LaTeX default header and footer files. | ||||
* | Moved citation cross reference searching to a separate function | Dimitri van Heesch | 2020-07-31 | 1 | -2/+3 |
| | |||||
* | Restructure citation handling | Dimitri van Heesch | 2020-02-16 | 1 | -51/+30 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -2/+0 |
| | |||||
* | Release-1.7.5.1-20111027 | Dimitri van Heesch | 2011-10-27 | 1 | -8/+8 |
| | |||||
* | Release-1.7.5 | Dimitri van Heesch | 2011-08-14 | 1 | -4/+0 |
| | |||||
* | Release-1.7.4-20110727 | Dimitri van Heesch | 2011-07-27 | 1 | -0/+104 |