summaryrefslogtreecommitdiffstats
path: root/src/linkedmap.h
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-7/+105
| | | | | | | | | | | | | | | | | 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 QFileInfo with FileInfoDimitri van Heesch2021-03-181-4/+28
| | | | | - FileInfo is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17.
* Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-191-20/+41
|
* issue #8129: Image path is now case sensitive (take 2)Dimitri van Heesch2020-10-311-33/+26
|
* issue #8129: Image path is now case sensitiveDimitri van Heesch2020-10-301-20/+31
|
* Refactoring: modernize getUsedClasses() methodDimitri van Heesch2020-10-291-17/+82
|
* Refactoring: size_t type conversions and QList in DotManagerDimitri van Heesch2020-05-021-2/+2
|
* Refactoring: migrate MemberNameInfoSDict to MemberNameInfoLinkedMapDimitri van Heesch2020-04-271-11/+99
|
* Fixes after coverity runDimitri van Heesch2020-04-101-5/+7
|
* Replaced FileNameDict/FileNameList by FileNameLinkedMapDimitri van Heesch2020-04-061-0/+3
|
* Fixed issue creating std::string from null pointerDimitri van Heesch2020-03-301-3/+3
|
* Restructure the way RefLists are handledDimitri van Heesch2020-02-271-0/+84