summaryrefslogtreecommitdiffstats
path: root/src/dotcallgraph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-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 performanceDimitri van Heesch2021-03-281-1/+1
| | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance.
* Refactoring: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-1/+1
|
* Refactoring: modernize various dot graphsDimitri van Heesch2021-01-221-18/+19
|
* Refactoring: modernize DotNodeDimitri van Heesch2021-01-221-19/+9
|
* Refactoring: removed macros used for getting the value of settingsDimitri van Heesch2020-11-151-9/+5
|
* Refactoring: modernize TooltipManager class and source reference listsDimitri van Heesch2020-10-201-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 brokenDimitri van Heesch2019-12-271-6/+10
|
* issue #7348 Better warning in case a graph would have been to largeDimitri van Heesch2019-11-161-2/+7
|
* refactoring dot.cppThomas Haller2019-06-131-0/+217