summaryrefslogtreecommitdiffstats
path: root/src/dotrunner.cpp
Commit message (Collapse)AuthorAgeFilesLines
* issue #8193: Better warning in case of error in dot / msc / dia imageDimitri van Heesch2021-05-031-3/+14
|
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-35/+35
| | | | | | | | | | | | | | | | | 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: replace QFile/FTextStream with fstream/stringstreamDimitri van Heesch2021-03-181-22/+10
|
* Refactoring: Replaced QDir with DirDimitri van Heesch2021-03-181-8/+10
| | | | | - Dir is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Refactor: make QCString a wrapper around std::stringDimitri van Heesch2020-06-101-1/+2
|
* Refactoring: size_t type conversions and QList in DotManagerDimitri van Heesch2020-05-021-1/+9
|
* Revert addition of std::string conversion operator for QCStringDimitri van Heesch2020-03-291-6/+6
|
* Minor tweaksDimitri van Heesch2020-03-221-11/+11
|
* Replace SDict with std::mapMoritz 'Morty' Strübe2020-03-211-0/+1
|
* QString -> std::string & QDict -> std::mapMoritz 'Morty' Strübe2020-03-211-7/+9
| | | | Replacing QString required replacing the QDict, too.
* Remove DotConstString and replace by std::stringMoritz 'Morty' Strübe2020-03-211-3/+3
| | | | | 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.
* Replace QThread with std::threadMoritz 'Morty' Strübe2020-03-211-0/+6
|
* Replace qlist with std::vectorMoritz 'Morty' Strübe2020-03-211-20/+16
|
* Replace QMutex and condition QWaitCondition with std::Moritz 'Morty' Strübe2020-03-191-9/+8
|
* Replace qqueue with std::queueMoritz 'Morty' Strübe2020-03-191-4/+5
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-2/+4
|
* Fix compiler warnings on Windows (Visual Studio)Dimitri van Heesch2020-02-121-1/+1
|
* Renamed Portables to PortableDimitri van Heesch2019-12-081-7/+7
|
* Refactoring of portable.h and portable.cpp functions to be contained in a ↵Tobias Off2019-11-281-7/+7
| | | | | | namespace Fixing some memory issues caused by not correctly freed pointers
* Reduce the use of QString in favor of the more efficient QCStringDimitri van Heesch2019-09-211-2/+2
|
* Refactoring code for dot related source filesDimitri van Heesch2019-09-101-9/+9
|
* Merge branch 'feature/bug_endblock_msg' of ↵Dimitri van Heesch2019-08-041-3/+3
| | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
* High consequence coverity mesagesalbert-github2019-07-021-0/+2
| | | | | - initializing fd (analogous to htmldocvisitor) - always good to close file pointers
* Fix for race conditions introduced when refactoring dot classes.Dimitri van Heesch2019-06-151-31/+23
|
* refactoring dot.cppThomas Haller2019-06-131-0/+300