Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -81/+81 |
| | | | | | | | | | | | | | | | | | 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()' | ||||
* | issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352) | Dimitri van Heesch | 2021-04-08 | 1 | -0/+2 |
| | |||||
* | Regression: source code was not longer visible in HTML/LaTeX/docbook output | Dimitri van Heesch | 2021-03-31 | 1 | -3/+2 |
| | |||||
* | Refactoring: Add TextStream buffer to improve output writing performance | Dimitri van Heesch | 2021-03-28 | 1 | -32/+34 |
| | | | | | - 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 | -21/+19 |
| | |||||
* | Issue #8206: Incorrect XHTML results | Dimitri van Heesch | 2020-11-27 | 1 | -2/+2 |
| | | | | | | | | | | | | Changes: - Change TooltipManager back into a singleton - Give the OutputList object a unique output id - Increment the id at each startFile() atomically - Pass the id to the HTML code generator - Store tooltips per output id. - Keep track of tooltips that are already written for a given id - for output formats other than HTML the output id is 0 and tooltips are not collected and written | ||||
* | Fix for broken LaTeX output. | Dimitri van Heesch | 2020-09-27 | 1 | -3/+3 |
| | | | | | | Fixes error: "\begin{DoxyCodeInclude} on input line 93 ended by \end{DoxyCode}" while generating the LaTeX version of the manual | ||||
* | Refactoring: prepare output generators for multi-threaded use | Dimitri van Heesch | 2020-09-27 | 1 | -6/+16 |
| | |||||
* | Refactoring: OutputList & OutputGen | Dimitri van Heesch | 2020-08-24 | 1 | -28/+21 |
| | | | | | | | | | | | | | | - Initialized member variables inside the class - Added copy & assign operators for OutputGenerator and Derived classes. - throw a runtime exception when OutputGenerator is copied while is file is still in progress. - Added clone method to make a copy of OutputList. - Moved the implementation of enable() & disable() and friend into OutputGen instead of having the same implementation in each derived class. - Made m_dir and m_fileName readonly (members dir() and fileName()) - Removed call to new while adding generators to OutputList - Replaced QStack by std::stack for the "enabled" state. | ||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -1/+1 |
| | |||||
* | Restructure section handling | Dimitri van Heesch | 2020-02-21 | 1 | -2/+2 |
| | |||||
* | Minor fixes | Dimitri van Heesch | 2019-12-25 | 1 | -7/+7 |
| | | | | | Avoid code duplication by adding function addHtmlExtensionIfMissing() and avoid member shadowing by using 'm_' prefix for member variables | ||||
* | refactoring dot.cpp | Thomas Haller | 2019-06-13 | 1 | -6/+6 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -3/+3 |
| | |||||
* | Renamed (start/end)SimpleSect to (start/end)Examples. | Dimitri van Heesch | 2018-08-26 | 1 | -2/+2 |
| | |||||
* | Bug 693515 - The 'Examples:' section; bad/missing style and incorrect spelling | albert-github | 2018-06-29 | 1 | -1/+1 |
| | | | | Made implementation analogous to the implementation for parameters in respect to padding and the use of colon (:). | ||||
* | Problem with code inside a Doxy table in LaTeX | albert-github | 2018-05-26 | 1 | -0/+1 |
| | | | | | | When code is used inside a problem occurs with \discretionary - Inside a table \discretionary is disabled when code is used. - \newline should not be appended to a code line (is already implicitly done by the command). | ||||
* | Better HTML output for VHDL Ports | albert-github | 2018-03-29 | 1 | -2/+3 |
| | | | | Small alignment improvement of HTML output for VHDL Ports so that the mode will be in a separate column | ||||
* | Cleanup: removed redundant =NULL from interfaces, or replaced by =0 where it ↵ | Dimitri van Heesch | 2016-11-28 | 1 | -1/+1 |
| | | | | was needed. | ||||
* | Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced ↵ | albert-github | 2016-11-13 | 1 | -1/+1 |
| | | | | | | | by..." for CSS Added class= to html output for "Definition at..." resulting in p.definition in the css file and for "Referenced by .. " and "References ..." resulting in p.definition in css file. (also corrected some error messages). | ||||
* | Unified display of enum values across output formats and languages | Dimitri van Heesch | 2016-08-31 | 1 | -19/+12 |
| | |||||
* | Style fixes and added numbering to overloaded members | Dimitri van Heesch | 2016-07-30 | 1 | -1/+1 |
| | |||||
* | Modified (readability) layout for member title in HTML and LaTex | PkLab.net | 2016-06-22 | 1 | -1/+1 |
| | |||||
* | Started with generating LaTeX output via the template engine | Dimitri van Heesch | 2015-08-27 | 1 | -18/+70 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Bug 687576 - Add support for LATEX_EXTRA_STYLESHEET | albert-github | 2014-11-29 | 1 | -0/+2 |
| | | | | Added the possibility for LATEX_EXTRA_STYLESHEET analogous to HTML_EXTRA_STYLESHEET. Special attention has been paid to the extension as ".sty" is automatically added by the \usepackage | ||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Added SOURCE_TOOLTIPS option for advanced tooltip support while source browsing | Dimitri van Heesch | 2013-07-02 | 1 | -2/+3 |
| | |||||
* | Release-1.8.3.1-20130402 | Dimitri van Heesch | 2013-04-02 | 1 | -0/+1 |
| | |||||
* | Release-1.8.3.1-20130324 | Dimitri van Heesch | 2013-03-24 | 1 | -1/+0 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -1/+1 |
| | |||||
* | Release-1.8.3 | Dimitri van Heesch | 2012-12-26 | 1 | -0/+3 |
| | |||||
* | Release-1.8.2-20120930 | Dimitri van Heesch | 2012-09-30 | 1 | -3/+8 |
| | |||||
* | Release-1.8.2 | Dimitri van Heesch | 2012-08-11 | 1 | -1/+1 |
| | |||||
* | Release-1.8.1.2-20120729 | Dimitri van Heesch | 2012-07-29 | 1 | -1/+3 |
| | |||||
* | Release-1.8.1.2 | Dimitri van Heesch | 2012-07-12 | 1 | -0/+1 |
| | |||||
* | Release-1.8.1.1 | Dimitri van Heesch | 2012-06-10 | 1 | -1/+3 |
| | |||||
* | Release-1.8.1 | Dimitri van Heesch | 2012-05-19 | 1 | -1/+1 |
| | |||||
* | Release-1.8.0-20120429 | Dimitri van Heesch | 2012-04-29 | 1 | -3/+5 |
| | |||||
* | Release-1.8.0-20120408 | Dimitri van Heesch | 2012-04-08 | 1 | -0/+4 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.6.1-20111226 | Dimitri van Heesch | 2011-12-26 | 1 | -4/+4 |
| | |||||
* | Release-1.7.5.1-20110925 | Dimitri van Heesch | 2011-09-25 | 1 | -0/+1 |
| | |||||
* | Release-1.7.4-20110727 | Dimitri van Heesch | 2011-07-27 | 1 | -2/+9 |
| | |||||
* | Release-1.7.4-20110629 | Dimitri van Heesch | 2011-06-29 | 1 | -3/+3 |
| | |||||
* | Release-1.7.4-20110426 | Dimitri van Heesch | 2011-04-26 | 1 | -1/+1 |
| | |||||
* | Release-1.7.4 | Dimitri van Heesch | 2011-03-28 | 1 | -3/+7 |
| | |||||
* | Release-1.7.3-20110217 | Dimitri van Heesch | 2011-02-17 | 1 | -0/+1 |
| | |||||
* | Release-1.7.3-20110123 | Dimitri van Heesch | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Release-1.7.2-20101224 | Dimitri van Heesch | 2010-12-24 | 1 | -0/+2 |
| |