Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -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: Add TextStream buffer to improve output writing performance | Dimitri van Heesch | 2021-03-28 | 1 | -1/+1 |
| | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -1/+1 |
| | |||||
* | Refactoring: modernize various dot graphs | Dimitri van Heesch | 2021-01-22 | 1 | -18/+19 |
| | |||||
* | Refactoring: modernize DotNode | Dimitri van Heesch | 2021-01-22 | 1 | -19/+9 |
| | |||||
* | Refactoring: removed macros used for getting the value of settings | Dimitri van Heesch | 2020-11-15 | 1 | -9/+5 |
| | |||||
* | Refactoring: modernize TooltipManager class and source reference lists | Dimitri van Heesch | 2020-10-20 | 1 | -36/+30 |
| | | | | | - Tooltips are now collected per file instead of globally - Source reference lists now use STL containers | ||||
* | issue #7319: Bug 790856 - Namespace member functions links are broken | Dimitri van Heesch | 2019-12-27 | 1 | -6/+10 |
| | |||||
* | issue #7348 Better warning in case a graph would have been to large | Dimitri van Heesch | 2019-11-16 | 1 | -2/+7 |
| | |||||
* | refactoring dot.cpp | Thomas Haller | 2019-06-13 | 1 | -0/+217 |