summaryrefslogtreecommitdiffstats
path: root/src/definition.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Renamed Portables to PortableDimitri van Heesch2019-12-081-8/+8
|
* Merge branch 'memory_leakage_fix' of https://github.com/virusxp/doxygen into ↵Dimitri van Heesch2019-12-081-8/+8
|\ | | | | | | virusxp-memory_leakage_fix
| * Refactoring of portable.h and portable.cpp functions to be contained in a ↵Tobias Off2019-11-281-8/+8
| | | | | | | | | | | | namespace Fixing some memory issues caused by not correctly freed pointers
* | Split language parser into "outline parser" and "code parser"Dimitri van Heesch2019-12-031-15/+15
|/
* issue #7403: xref versus namespace in multiple fileDimitri van Heesch2019-11-161-1/+1
|
* Merge pull request #7377 from albert-github/feature/bug_spell_srcDimitri van Heesch2019-11-061-1/+1
|\ | | | | Spelling corrections for src directory
| * Spelling corrections for src directoryalbert-github2019-11-051-1/+1
| | | | | | | | | | | | | | | | Spelling corrections as found by codespell and in #561. Some reported problems were already fixed, others are fixed here, with some exceptions (a,o.): - "referenceby" in defgen.cpp as this is in the output and I cannot oversee the consequences (looks like none, but ...) - "HANGEUL_CHARSET" left as is as in some MS documentation is written: 'HANGUL_CHARSET: Also spelled "Hangeul". Specifies the Hangul Korean character set.' (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/0d0b32ac-a836-4bd2-a112-b6000a1b4fc9).
* | issue #7302: Determination of anonymous is too restrictiveDimitri van Heesch2019-11-051-21/+22
|/
* Replaced QList<ListItemInfo> with std::vector<ListItemInfo>Dimitri van Heesch2019-10-291-63/+28
|
* Replaced QList<SectionInfo> by std::vector<SectionInfo>Dimitri van Heesch2019-10-291-5/+2
|
* Changed ArgumentList to be an STL containerDimitri van Heesch2019-10-271-1/+1
|
* Correction warning messagealbert-github2019-06-011-6/+6
| | | | Consistency
* Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-18/+33
|
* Regression on Definition and derived classes that are abstract interfaces (2)albert-github2019-03-011-5/+5
| | | | Looks like some more possible problematic places (no test case present)
* Regression on Definition and derived classes that are abstract interfaces (2)albert-github2019-03-011-1/+1
| | | | | There was a incorrect cast which didn't show with compilers on *nix, but does on windows. Problem occurred at least with test 58, 62 and with documentation (tclexample)
* Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-136/+171
|
* Remove persistent storage of Entry objectsDimitri van Heesch2019-02-171-1/+1
|
* Added declfile, declline, and declcolumn attributes to the location element ↵Dimitri van Heesch2019-01-121-2/+15
| | | | in the XML output
* Moved check for page having a title to hasTitle() methodDimitri van Heesch2018-12-311-5/+4
|
* issue #6716 mainpage notitle causes notitle to appear in index baralbert-github2018-12-301-1/+2
| | | | The "notitle" was still shown at the botton page index bar in case of TreeView and in other cases in the top index bar.
* Fixed two small memory leaksDimitri van Heesch2018-12-251-0/+1
|
* Merge pull request #6696 from albert-github/feature/bug_xhtml_tocDimitri van Heesch2018-12-201-0/+1
|\ | | | | Incorrect closing tags for in page table of contents (XHTML)
| * Incorrect closing tags for in page table of contents (XHTML)albert-github2018-12-191-0/+1
| | | | | | | | In case of using the levels in the in page table of contents in XHTML some closing tags wer missing.
* | Incorrect closing tags for in page table of contents (docbook)albert-github2018-12-191-0/+8
|/ | | | In the in page table of contents in docbook some closing tags were missing.
* Merge pull request #6562 from albert-github/feature/bug_referencesDimitri van Heesch2018-11-041-8/+2
|\ | | | | Add commands to handle referenced by relation and references relation
| * Add commands to handle referenced by relation and references relationalbert-github2018-10-171-8/+2
| | | | | | | | | | | | | | | | | | | | | | Analogous to call graph and caller graph this patch provides an implementation for the referenced by relation and references relation. Providing the commands: - referencedbyrelation - hidereferencedbyrelation - referencesrelation - hidereferencesrelation Motivation is that some lists can get extremely large and also there is now more symmetry between the textual and graphical out.
* | issue_6594 using ingroup and anchor causes tests to disappearalbert-github2018-11-031-2/+10
|/ | | | | The determination whether or not a reference item was in a list was based on the list name and it returned the first list item id. With multiple items only the first item was found. Checking whether an item should be appended is now based on the list name and the item id.
* redundant input_filter runs significantly reduce performance when ↵Dimitri van Heesch2018-09-251-59/+176
| | | | FILTER_SOURCE_FILES and INLINE_SOURCES are both enabled #6395
* Merge pull request #6487 from albert-github/feature/bug_docbookDimitri van Heesch2018-09-151-1/+100
|\ | | | | Implementation of standard generator for docbook output
| * Implementation of standard generator for docbook outputalbert-github2018-09-071-2/+101
| | | | | | | | | | | | | | | | Till now docbook had its own output generator, but lot of possibilities were missing (see remark about updating below), with this patch the (more than) basic implementation has been made. Added some docbook tests to the current tests and updated documentation where necessary Tried updating current version but too many issues remained that were generically handled in the standard generator, code is in current version behind '#if 0' construct in doxygen.cpp and name with '_v1' and in docbookgen.cp'
* | Merge pull request #6505 from albert-github/feature/bug_covertyDimitri van Heesch2018-09-151-0/+1
|\ \ | | | | | | Fixing coverity messages
| * | Fixing coverity messagesalbert-github2018-09-131-0/+1
| |/ | | | | | | Note: especially latexdocvisitor (dead code that should not be dead code).
* | Fixing problem with possible not initialized variable (endless loop in VS ↵albert-github2018-09-121-1/+1
|/ | | | | | 2017 debug) The not initialized variable `l` caused and endless loop in the VS2017 debug version, variable should not have been used.
* Moved local toc data into a separate type for better encapsulationDimitri van Heesch2018-07-221-61/+61
|
* Enable in page table of contents for XML and add maximum level to in page ↵albert-github2018-07-121-10/+20
| | | | | | | 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 LaTeXalbert-github2018-05-211-1/+12
| | | | | | | | 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.)
* Correcting "Definition at line @0 of file @1."albert-github2018-04-091-5/+5
| | | | In the LaTeX and RTF documentation where the filename should be presented before the linenumber (e.g. Chinese, Japanese) in the sentence "Definition at line @0 of file @1." neither was shown, the HTML version was correct.
* const-ifyAdrian Negreanu2017-09-251-1/+1
|
* typosKunda2017-03-051-1/+1
| | | | | | some doxy typos and some misc. source typos typos some doxy typos and some misc. source typos
* Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced ↵albert-github2016-11-131-3/+3
| | | | | | | 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).
* Bug 770747 - Broken links in HTML output with SHOW_FILES=NODimitri van Heesch2016-09-021-0/+15
|
* Merge pull request #459 from albert-github/feature/bug_763720Dimitri van Heesch2016-03-191-0/+1
|\ | | | | Bug 763720 - Exclusion of a new line at the end of source code file causing nesting of HTML code for function documentation
| * Bug 763720 - Exclusion of a new line at the end of source code file causing ↵albert-github2016-03-181-1/+1
| | | | | | | | | | | | nesting of HTML code for function documentation Update based on comment by D.v.Heesch
| * Bug 763720 - Exclusion of a new line at the end of source code file causing ↵albert-github2016-03-171-0/+1
| | | | | | | | | | | | nesting of HTML code for function documentation In case a code fragment does not end with a newline add it explicitly, otherwise following descriptive element might get into the same box.
* | Bug 763471 - imported section anchors are copied in project tagfileDimitri van Heesch2016-03-141-1/+1
|/
* Optimized use of convertNameToFile to improve performanceDimitri van Heesch2016-02-071-13/+0
|
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-19/+19
| | | | improve performance
* Bug 755783 - RTF output has incomplete "References" and "Referenced by" sectionsalbert-github2015-09-301-1/+1
| | | | Test for rtfSourceCode was incorrect (see also latexSourceCode) resulting in no output or double output depending on the settig of RTF_SOURCE_CODE
* Fixed a number of memory leaks in the template engineDimitri van Heesch2015-09-131-0/+1
|
* Made several improvements to the performance of template engineDimitri van Heesch2015-09-131-3/+4
|