summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: Removed creation of MemberDef's for macro definitions from pre.lDimitri van Heesch2020-05-221-0/+35
|
* Reduce use of WIN32 defines outside of portableDimitri van Heesch2020-05-161-4/+0
|
* RefactoringDimitri van Heesch2020-05-151-3/+2
| | | | | | | | | | | - Makes doxycfg library more self contained - renames _doxygen library to doxymain - Modernizes Debug implementation - Moves Doxygen::runningTime into Debug - Moves full version string to libversion - Removed mentioning of file version in messages (when FILE_VERSION_FILTER is used) - Move substitute functions into QCString
* Merge pull request #7703 from elrond79/set_defname_if_not_protoDimitri van Heesch2020-05-101-3/+3
|\ | | | | make declArgumentList be from declaration, and argumentList from definition
| * try to make it so that argumentList is always from the definitionPaul Molodowitch2020-04-151-3/+3
| | | | | | | | ...whereas the declArgumentList is always from the declaration
* | Did a bit of restructuring and fixed some compiler warningsDimitri van Heesch2020-05-101-11/+11
| |
* | Combined logic in a single expressionDimitri van Heesch2020-05-091-3/+6
| |
* | issue #7747 Three-way comparison operatoralbert-github2020-05-041-2/+4
| | | | | | | | Implementation of the C++2x three-way / spaceship operator.
* | Refactoring: size_t type conversions and QList in DotManagerDimitri van Heesch2020-05-021-2/+6
| |
* | Refactoring: Introduce type names for commonly used container typesDimitri van Heesch2020-05-011-11/+11
| |
* | Refactoring: modernize g_inputFiles and the parameters of readFileOrDirectoryDimitri van Heesch2020-04-301-103/+131
| |
* | Refactoring: replace Doxygen::namespaceAliasDict by Doxygen::namespaceAliasMapDimitri van Heesch2020-04-291-8/+4
| |
* | Refactoring: migrate type of Doxygen::inputPaths to std::setDimitri van Heesch2020-04-291-8/+9
| |
* | Refactoring: replaced killDict by killSetDimitri van Heesch2020-04-271-29/+27
| |
* | Refactoring: migrate MemberNameInfoSDict to MemberNameInfoLinkedMapDimitri van Heesch2020-04-271-171/+155
| |
* | Refactoring: Improve encapsulation of MemberInfo classDimitri van Heesch2020-04-271-2/+2
| |
* | Fixed 2 small memory leaksDimitri van Heesch2020-04-261-16/+16
| |
* | Refactor: remove symbolStorage references (dead code)Dimitri van Heesch2020-04-251-13/+0
| |
* | Refactor: improve encapsulation for ArgumentListDimitri van Heesch2020-04-251-5/+5
| |
* | moved separate doxygen tag to tagfile attributeDimitri van Heesch2020-04-251-5/+3
| |
* | Merge branch 'feature/bug_tag_doxygen' of ↵Dimitri van Heesch2020-04-251-0/+7
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_tag_doxygen
| * | Add doxygen version information to tag filealbert-github2020-04-201-0/+7
| | | | | | | | | | | | | | | Add doxygen version information to doxygen tag file. currently this information is not used inside doxygen , but is useful for checking with which version of doxygen is used when debugging problems.
* | | Performance improvements after profilingDimitri van Heesch2020-04-241-43/+46
|/ / | | | | | | | | In some cases performance dropped when upgrading from version 1.8.16 to 1.8.17 or 1.8.18. With these changes the performance should be back to normal again.
* | Refactoring: changed Doxygen::expandAsDefinedDict to Doxygen::expandAsDefinedSetDimitri van Heesch2020-04-181-7/+2
| |
* | issue #7698: forward declaration of template classesDimitri van Heesch2020-04-161-20/+22
| |
* | Fix for crash in addEnumValuesToEnum() (better solution)Dimitri van Heesch2020-04-151-8/+13
|/
* Fix for crash in addEnumValuesToEnum()Dimitri van Heesch2020-04-141-7/+9
|
* Fixes after coverity runDimitri van Heesch2020-04-101-5/+4
|
* Fixed shadowing issue in getFortranDefs and other shadowing casesDimitri van Heesch2020-04-091-2/+2
|
* Replaced MemberNameSDict by MemberNameLinkedMap based on LinkedMapDimitri van Heesch2020-04-081-1002/+924
|
* Fixing issues with wrong use of std::sortDimitri van Heesch2020-04-061-5/+6
|
* Added missing #includesDimitri van Heesch2020-04-061-0/+1
|
* Merge branch 'filenamedict'Dimitri van Heesch2020-04-061-214/+181
|\
| * Replaced FileNameDict/FileNameList by FileNameLinkedMapDimitri van Heesch2020-04-061-214/+181
| |
* | Fix html file ext in external docs (#7679)avostrik2020-04-011-0/+1
|/ | | | | | | | | | | | * Add HTML extension to url conditionally in tree view item. This change fixes issue with double extension in treeview file list items generated from external tag file. Items that were read from tag file already have extension. * Add missing HTML file extension in writeTagFile() calls * Unify addition of HTML file extension in writeTagFile calls. Signed-off-by: Andrey Vostrikov <andrey.vostrikov@cogentembedded.com>
* issue #7660: In the ceph package error: non-const getNamespaceDef() called ↵Dimitri van Heesch2020-03-301-1/+3
| | | | on aliased member.
* Merge branch 'remove_tcl'Dimitri van Heesch2020-03-221-3/+0
|\
| * Remove support for TCL (code is too buggy and unmaintained, language not ↵Dimitri van Heesch2020-03-151-3/+0
| | | | | | | | very popular)
* | Fix not correctly formatted messagesMoritz 'Morty' Strübe2020-03-211-6/+5
| |
* | Doxygen version information (#7645)albert-github2020-03-171-18/+2
| | | | | | | | | | - add doxygen version to rtf, comment, output - remove duplicate code (getFullVersion) - more clear name to get doxygen version (getVersion becomes getrDoxygenVersion). Also to overcomecofusion with the version information for files.
* | Issue #7635: Incorrect location for enum in XML file (part 3)Dimitri van Heesch2020-03-171-30/+30
|/
* issue #7635: Incorrect location for enum in XML file (part 2)Dimitri van Heesch2020-03-151-8/+8
|
* Doxygen version in the messages output (#7640)albert-github2020-03-141-0/+12
| | | Output the doxygen version with the normal progress messages (and suppress in case of QUIET=YES).
* Remove dead code and fix more warningsDimitri van Heesch2020-03-081-1/+0
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-21/+17
|
* Restructure the way RefLists are handledDimitri van Heesch2020-02-271-13/+6
|
* issue #7585: Doxygen 1.8.17 false warnings and no generate output for ↵Dimitri van Heesch2020-02-231-1/+0
| | | | documented const functions
* Restructure section handlingDimitri van Heesch2020-02-211-27/+23
|
* Restructure citation handlingDimitri van Heesch2020-02-161-7/+2
|
* Removed Doxygen::gatherDefines as it was not used anymoreDimitri van Heesch2020-02-151-1/+0
|