summaryrefslogtreecommitdiffstats
path: root/src/dia.cpp
Commit message (Collapse)AuthorAgeFilesLines
* issue #8193: Better warning in case of error in dot / msc / dia imageDimitri van Heesch2021-05-031-2/+3
|
* 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: Replaced QDir with DirDimitri van Heesch2021-03-181-10/+8
| | | | | - Dir is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Renamed Portables to PortableDimitri van Heesch2019-12-081-9/+9
|
* Refactoring of portable.h and portable.cpp functions to be contained in a ↵Tobias Off2019-11-281-9/+9
| | | | | | namespace Fixing some memory issues caused by not correctly freed pointers
* Bug 489766 - Wrong MSC syntax rejected *silently*albert-github2019-06-131-0/+2
| | | | In case of an error at least a message (consistency) should be given (besides msc also for dia and htags).
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-2/+2
| | | | improve performance
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Bug 707713 - Add support for dia diagramsDimitri van Heesch2013-10-061-0/+88