summaryrefslogtreecommitdiffstats
path: root/src/dotclassgraph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-23/+23
| | | | | | | | | | | | | | | | | 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-4/+5
| | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance.
* Refactoring: replace QMIN/QMAX by std::min/std::maxDimitri van Heesch2021-03-261-3/+5
|
* Refactoring: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-4/+4
|
* Refactoring: modernize various dot graphsDimitri van Heesch2021-01-221-37/+33
|
* Refactoring: modernize used/usedByImplementationClasses & ↵Dimitri van Heesch2021-01-221-23/+10
| | | | templateTypeConstraints
* Refactoring: modernize ClassDef::getTemplateInstances()Dimitri van Heesch2021-01-221-17/+5
|
* Refactoring: modernize DotNodeDimitri van Heesch2021-01-221-32/+15
|
* bug_560861 Class graph does not differentiate same classes in different ↵albert-github2021-01-111-2/+7
| | | | | | namespace The checking should not take place on the display name of the class but on its full name.
* Fixed scope resolution problem for nested Java genericsDimitri van Heesch2020-12-221-1/+1
|
* Refactoring: removed macros used for getting the value of settingsDimitri van Heesch2020-11-151-15/+9
|
* Refactoring: Modernize BaseClassListDimitri van Heesch2020-10-121-11/+4
|
* Changed container class for class use and constrained relations from ↵Dimitri van Heesch2020-08-021-40/+21
| | | | QDict<void> to StringSet
* Refactoring: Introduce type names for commonly used container typesDimitri van Heesch2020-05-011-15/+14
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-2/+4
|
* issue #7348 Better warning in case a graph would have been to largeDimitri van Heesch2019-11-161-1/+6
|
* Merge branch 'feature/bug_endblock_msg' of ↵Dimitri van Heesch2019-08-041-4/+4
| | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
* refactoring dot.cppThomas Haller2019-06-131-0/+548