summaryrefslogtreecommitdiffstats
path: root/src/dotrunner.h
Commit message (Collapse)AuthorAgeFilesLines
* issue #8193: Better warning in case of error in dot / msc / dia imageDimitri van Heesch2021-05-031-3/+6
|
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-13/+14
| | | | | | | | | | | | | | | | | 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: size_t type conversions and QList in DotManagerDimitri van Heesch2020-05-021-3/+3
|
* Minor tweaksDimitri van Heesch2020-03-221-5/+3
|
* QString -> std::string & QDict -> std::mapMoritz 'Morty' Strübe2020-03-211-3/+3
| | | | Replacing QString required replacing the QDict, too.
* Remove DotConstString and replace by std::stringMoritz 'Morty' Strübe2020-03-211-53/+14
| | | | | Whatever the idea of creating DotConstString was, probably creating copy-free Strings, it is not used anymore as each job gets its own copy anyway.
* Fixup condition-variable and mutexMoritz 'Morty' Strübe2020-03-211-0/+1
|
* Replace QThread with std::threadMoritz 'Morty' Strübe2020-03-211-2/+7
|
* Replace qlist with std::vectorMoritz 'Morty' Strübe2020-03-211-2/+2
|
* Replace QMutex and condition QWaitCondition with std::Moritz 'Morty' Strübe2020-03-191-4/+3
|
* Replace qqueue with std::queueMoritz 'Morty' Strübe2020-03-191-2/+2
|
* Refactoring code for dot related source filesDimitri van Heesch2019-09-101-7/+1
|
* refactoring dot.cppThomas Haller2019-06-131-0/+138