Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | 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/+1 |
| | | | | | - 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: remove unused sortdict.h | Dimitri van Heesch | 2021-01-22 | 1 | -1/+0 |
| | |||||
* | Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMap | Dimitri van Heesch | 2020-12-31 | 1 | -1/+1 |
| | |||||
* | Refactoring: replaced PageSDict by PageLinked*Map | Dimitri van Heesch | 2020-12-31 | 1 | -12/+8 |
| | |||||
* | Refactoring: replacing dynamic_cast by static_cast to improve performance | Dimitri van Heesch | 2020-11-13 | 1 | -1/+8 |
| | |||||
* | Refactoring: Introduce immutable and mutable interfaces | Dimitri van Heesch | 2020-11-09 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | Reworked changes a bit | Dimitri van Heesch | 2020-10-04 | 1 | -8/+4 |
| | | | | | | - topLine is replaced by startLine - changed unputDocnl macro into a more self contained function-like macro | ||||
* | Miscounting of lines in respect to page command | albert-github | 2020-09-24 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | All examples together are a bit big so they are all in the attached file together with the warnings before and after this patch. When looking at the output we see that a number of lines are off by 1 ore more due to the insertion of extra lines in the code or due to the fact that there is a reference to the start of the documentation of the page and not the line of the page command. - commentscan.l in case of a rule contaiinge {DOCNL} this can be `=n` or `\ilinebr` in the later case this should not be replaced by `\n` as this results in an increase of the line count later on. in case of a page like command also register the line of the command as "topline". - entry.h, entry.cpp storage space for the "topline" registering the line of the page like commands. - doxygen.cpp setting and using the "topline" - markdown.cpp, markdown.h don't add a `\n` as this increases the line count but use the `\ilinebr` to get correct warnings see to it that when having empty lines at the top of the page and a page is added that the empty lines appear after the page command. - index.cpp using the "topline" instead of the "docLine" to get the correct warning - pagedef.cpp, pagedef.h set and retrieve the "topline" for page like commands. - util.cpp, util.h setting and using the "topline" in `addRelatedPage` use the known file name and line for the warning regarding the section label - cite.cpp, context.cpp, reflist.cpp changed to have good function calls. | ||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -6/+6 |
| | |||||
* | Refactored Definition and derived classes such that they are abstract interfaces | Dimitri van Heesch | 2019-02-28 | 1 | -47/+31 |
| | |||||
* | Moved check for page having a title to hasTitle() method | Dimitri van Heesch | 2018-12-31 | 1 | -1/+3 |
| | |||||
* | Bug 691689 - Line numbers for examples | Dimitri van Heesch | 2018-08-19 | 1 | -0/+3 |
| | |||||
* | Moved local toc data into a separate type for better encapsulation | Dimitri van Heesch | 2018-07-22 | 1 | -6/+3 |
| | |||||
* | Enable in page table of contents for XML and add maximum level to in page ↵ | albert-github | 2018-07-12 | 1 | -1/+4 |
| | | | | | | | table of contents - add the in page table of contents for XML - add the possibility to have maximum levels in the in page table of contents (possible per output type and per in page table of contents. Default is show all) | ||||
* | Enable in page table of contents for LaTeX | albert-github | 2018-05-21 | 1 | -3/+3 |
| | | | | | | | | currently the \tableofcontents command is only supported for HTML. In this patch: - enable in page table of contents for LaTeX: \tableofcontents['{'[option][,option]*'}'] where option can be 'HTML, and 'LaTeX' (side effect: possibility to have options with, nearly, all commands.) | ||||
* | Bug 755080 - xrefitem link to list incorrect when using SHORT_NAMES | Dimitri van Heesch | 2015-10-24 | 1 | -1/+1 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 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. | ||||
* | Bug 709803 - Generated hhc file contains an error for a section of a mainpage | Dimitri van Heesch | 2013-10-12 | 1 | -1/+1 |
| | |||||
* | Fixed a number of compiler warnings reported by newer clang compiler | Dimitri van Heesch | 2013-09-18 | 1 | -1/+0 |
| | |||||
* | Bug 688858 - SHORT_NAMES break references to \page in PDF output | Dimitri van Heesch | 2013-08-04 | 1 | -1/+1 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -2/+2 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -1/+1 |
| | |||||
* | Release-1.8.2 | Dimitri van Heesch | 2012-08-11 | 1 | -0/+5 |
| | |||||
* | Release-1.8.1.1 | Dimitri van Heesch | 2012-06-10 | 1 | -1/+2 |
| | |||||
* | Release-1.8.0 | Dimitri van Heesch | 2012-03-17 | 1 | -0/+1 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -3/+10 |
| | |||||
* | Release-1.7.6.1-20111226 | Dimitri van Heesch | 2011-12-26 | 1 | -0/+1 |
| | |||||
* | Release-1.7.5.1-20111027 | Dimitri van Heesch | 2011-10-27 | 1 | -0/+1 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.0 | Dimitri van Heesch | 2010-06-15 | 1 | -1/+1 |
| | |||||
* | Release-1.6.2-20100124 | Dimitri van Heesch | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Release-1.5.5-20080316 | Dimitri van Heesch | 2008-03-16 | 1 | -6/+9 |
| | |||||
* | 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.6-20060507 | Dimitri van Heesch | 2006-05-07 | 1 | -1/+1 |
| | |||||
* | Release-1.4.5-20051227 | Dimitri van Heesch | 2005-12-27 | 1 | -0/+3 |
| | |||||
* | Release-1.4.2-20050508 | Dimitri van Heesch | 2005-05-08 | 1 | -0/+3 |
| | |||||
* | Release-1.4.1-20050315 | Dimitri van Heesch | 2005-03-15 | 1 | -1/+9 |
| | |||||
* | Release-1.4.1-20050227 | Dimitri van Heesch | 2005-02-27 | 1 | -1/+1 |
| | |||||
* | Release-1.4.1 | Dimitri van Heesch | 2005-01-11 | 1 | -1/+1 |
| | |||||
* | Release-1.3.5-20040105 | Dimitri van Heesch | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | Release-1.3.2-20030708 | Dimitri van Heesch | 2003-07-08 | 1 | -1/+1 |
| |