Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | 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 performance | Dimitri van Heesch | 2021-03-28 | 1 | -1/+2 |
| | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -2/+1 |
| | |||||
* | Refactoring: cleanup unused qtools headers | Dimitri van Heesch | 2021-01-22 | 1 | -1/+0 |
| | |||||
* | Refactoring: modernize MemberList | Dimitri van Heesch | 2021-01-22 | 1 | -5/+10 |
| | |||||
* | Refactoring: remove unused sortdict.h | Dimitri van Heesch | 2021-01-22 | 1 | -1/+0 |
| | |||||
* | Revert "Refactoring: Embed MemberGroup objects directly in their container" | Dimitri van Heesch | 2021-01-04 | 1 | -9/+1 |
| | | | | This reverts commit d37c654efbd5bb4ea19e1997d1daccb0b01de8b3. | ||||
* | Refactoring: Embed MemberGroup objects directly in their container | Dimitri van Heesch | 2021-01-04 | 1 | -1/+9 |
| | |||||
* | Refactoring: modernise Doxygen::clangUsrMap | Dimitri van Heesch | 2021-01-01 | 1 | -1/+2 |
| | |||||
* | Refactoring: change MemberGroupSDict to MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -14/+5 |
| | |||||
* | Refactoring: modernise MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -12/+1 |
| | |||||
* | Refactoring: Introduce immutable and mutable interfaces | Dimitri van Heesch | 2020-11-09 | 1 | -1/+2 |
| | | | | | | Split Definition/ClassDef/NamespaceDef/MemberDef into a immutable and mutable part Aliases are immutable, other symbols are stored using an immutable interface but can be made mutable explicitly by dynamic casting. | ||||
* | issue #7973: C++ grouped functions in namespace have disapeard | Dimitri van Heesch | 2020-08-24 | 1 | -6/+6 |
| | | | | | - reverted some of the change that introduced the problem - fixed the original problem (#7216) in a different way | ||||
* | Refactoring: Introduce type names for commonly used container types | Dimitri van Heesch | 2020-05-01 | 1 | -10/+11 |
| | |||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -1/+0 |
| | |||||
* | Restructure the way RefLists are handled | Dimitri van Heesch | 2020-02-27 | 1 | -5/+5 |
| | |||||
* | Coverity uninitialized | albert-github | 2019-12-02 | 1 | -8/+8 |
| | | | | Fixing a number of uninitialized variables based on the coverity output of November 30, 2019 | ||||
* | Replaced QList<ListItemInfo> with std::vector<ListItemInfo> | Dimitri van Heesch | 2019-10-29 | 1 | -7/+7 |
| | |||||
* | Cleanup forward declarations of obsolete classes | Dimitri van Heesch | 2019-10-28 | 1 | -1/+0 |
| | |||||
* | issue #7216: non-const getGroupDef() called on aliased member (cleanup + ↵ | Dimitri van Heesch | 2019-08-26 | 1 | -14/+1 |
| | | | | null pointer fix) | ||||
* | issue #7216: non-const getGroupDef() called on aliased member | Dimitri van Heesch | 2019-08-25 | 1 | -1/+1 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -15/+20 |
| | |||||
* | Remove persistent storage of Entry objects | Dimitri van Heesch | 2019-02-17 | 1 | -3/+0 |
| | |||||
* | Added *.ice files as a recognized file type. | Mark Spruiell | 2018-10-22 | 1 | -0/+2 |
| | | | | Added a Slice-optimized output mode. | ||||
* | Fix order of member initilaization | Christoph Grüninger | 2016-01-23 | 1 | -1/+1 |
| | |||||
* | Bug 753500 - $file when using @name is wrong | Dimitri van Heesch | 2015-09-14 | 1 | -2/+7 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Introduce new optimized string implementation (attempt 2) | Dimitri van Heesch | 2014-10-23 | 1 | -1/+1 |
| | |||||
* | Bug 736992 - Member functions omitted from tagfile | Dimitri van Heesch | 2014-09-22 | 1 | -0/+2 |
| | |||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Reduced and improved functionality of QList | Dimitri van Heesch | 2013-12-30 | 1 | -2/+3 |
| | | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface. | ||||
* | Added more info to the context | Dimitri van Heesch | 2013-12-12 | 1 | -2/+2 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -1/+1 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -7/+6 |
| | |||||
* | Release-1.8.1.1 | Dimitri van Heesch | 2012-06-10 | 1 | -16/+5 |
| | |||||
* | Release-1.8.1 | Dimitri van Heesch | 2012-05-19 | 1 | -2/+4 |
| | |||||
* | Release-1.8.0-20120429 | Dimitri van Heesch | 2012-04-29 | 1 | -3/+7 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.4 | Dimitri van Heesch | 2011-03-28 | 1 | -3/+4 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.2-20101118 | Dimitri van Heesch | 2010-11-18 | 1 | -0/+4 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.6.1 | Dimitri van Heesch | 2009-08-25 | 1 | -0/+9 |
| | |||||
* | Release-1.5.9-20090622 | Dimitri van Heesch | 2009-06-22 | 1 | -0/+1 |
| | |||||
* | Release-1.5.4-20080101 | Dimitri van Heesch | 2008-01-17 | 1 | -2/+2 |
| | |||||
* | Release-1.5.4 | Dimitri van Heesch | 2008-01-16 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070219 | Dimitri van Heesch | 2007-02-19 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20070107 | Dimitri van Heesch | 2007-01-07 | 1 | -1/+1 |
| | |||||
* | Release-1.5.1-20061202 | Dimitri van Heesch | 2006-12-02 | 1 | -1/+1 |
| | |||||
* | Release-1.4.7-20060910 | Dimitri van Heesch | 2006-09-10 | 1 | -1/+7 |
| |