summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Bug 770973 - Tag file size double between each runDimitri van Heesch2016-10-081-1/+1
|
* Bug 771152 - C++11 ref-qualifiers do not appear in Member Function ↵Dimitri van Heesch2016-09-211-0/+8
| | | | Documentation section
* Unified display of enum values across output formats and languagesDimitri van Heesch2016-08-311-30/+36
|
* Style fixes and added numbering to overloaded membersDimitri van Heesch2016-07-301-7/+9
|
* Modified (readability) layout for member title in HTML and LaTexPkLab.net2016-06-221-1/+1
|
* Applied responsive design to menu bar using smartmenusDimitri van Heesch2016-05-051-4/+0
|
* Fixed wrong <p> nesting issue for call/caller graphsDimitri van Heesch2016-03-081-4/+4
|
* Bug 753608 - Link of typedef within namespace on group pages missingDimitri van Heesch2016-02-081-17/+24
|
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-53/+53
| | | | improve performance
* Bug 722654 - Inherited member of template class issues warning and is not ↵Dimitri van Heesch2016-01-091-4/+7
| | | | documented
* Bug 742715 - Unnamed structs gives: QGDict::hashAsciiKey: Invalid null keyDimitri van Heesch2015-12-281-1/+6
|
* Bug 755939 - Warning refers to incorrect line for undocumented member ↵Dimitri van Heesch2015-12-281-1/+1
| | | | function (C++)
* Bug 758132 - Brief description of non documented functions (fixes)Dimitri van Heesch2015-12-281-5/+3
|
* Bug 758132 - Brief description of non documented functionsalbert-github2015-11-221-0/+1
| | | | | In case a function or an other item is not documented and EXTRACT_ALL has not been specified it should not appear in the list with brief description of functions etc. (This patch supersedes the patch as proposed in pull request 411 based on the comments from Dimitri van Heesch)
* Bug 754606 - Double anchors when using groupsDimitri van Heesch2015-11-011-9/+12
|
* Template enhancements and various other small fixesDimitri van Heesch2015-09-081-5/+11
|
* Bug 746734 - Don't warn about missing documentation for deleted functions.Dimitri van Heesch2015-05-031-2/+7
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-04-041-3/+3
|\
| * Warnings without filenamealbert-github2015-03-211-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | In a number of instances we don't get the filename of where the error occurs but a name or even unknown between <> e.g. <fie_p2>:1: warning: parameters of member fie_p2 are not (all) documented <error>:1: warning: parameters of member p1.error are not (all) documented <unknown>:1: warning: Member fie_p3 (function) of class p3::int1_p3 is not documented. This patch tries to overcome this problem by providing the right file: .../p2.h:8: warning: parameters of member fie_p2 are not (all) documented .../p1.py:7: warning: parameters of member p1.error are not (all) documented .../p3.f90:3: warning: Member fie_p3 (function) of class p3::int1_p3 is not documented.
* | Added function arguments to the LaTeX tocDimitri van Heesch2015-04-021-0/+4
|/
* Merge pull request #305 from albert-github/feature/bug_745481Dimitri van Heesch2015-03-051-1/+4
|\ | | | | Bug 745481 - Doxygen generates bad "More..." file links for functions within a namespace
| * Bug 745481 - Doxygen generates bad "More..." file links for functions within ↵albert-github2015-03-041-1/+4
| | | | | | | | | | | | a namespace Namespaces are recorded at separate pages as well. Condition should be extended for namespaces as well.
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2015-02-261-2/+2
|\ \ | |/
| * Adding commands \hidecallgraph and \hidecallergraphalbert-github2015-02-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the new commands \hidecallgraph and \hidecallergraph it is possible to suppress a call or caller graph even though the corresponding option CALL_GRAPH or CALLER_GRAPH is set. commands.doc config.xml diagrams.doc - updating documentation to support new commands entry.cpp - initialize callgraph and callergraph with the value from the config file commentscan.l - add handling for the new commands context.cpp memberdef.cpp util.cpp - getting the option for CALL_GRAPH and CALLER_GRAPH is not necessary anymore as it is incorporated in the initialization of an Entry item dbusxmlscanner.cpp - initialization is done in the Entry item vhdljjparser.cpp - gBlock was a static variable and therefore initialized before the doxygen main routine started. A Entry element sets now the default for callgraph and callergraph based on the config file and as the config file is not yet known at that moment the value for CALL_GRAPH and CALLER_GRAPH were set to False. By making a pointer of gBlock and doing an appropriate new Entry call this problem is overcome.
* | Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|/
* Fortran: warning message about not documented module memberalbert-github2015-01-061-1/+7
| | | | | When having a not documented MODULE member it is mentioned that a member in a 'namespace' is not documented. For Fortran this is a bit strange as Fortran does not know the term namespace, modules are handled as namespaces (in the pre 1.8.9 version a message was given about 'class', which is equally confusing). This patch changes in this case 'namespace' to 'module'.
* Merge pull request #272 from albert-github/feature/bug_unusedDimitri van Heesch2015-01-031-1/+0
|\ | | | | Remove unused local and static global variables
| * Remove unused local and static global variablesalbert-github2014-12-271-1/+0
| | | | | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
* | Fixed a couple of cases where sharing string data could lead to corruptionDimitri van Heesch2015-01-021-1/+1
|/ | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string.
* Bug 729063 - Missing link for item inside the same namespaceDimitri van Heesch2014-12-231-15/+17
|
* Bug 739209 - Invalid warning about undocumented C++ function imported from ↵Dimitri van Heesch2014-12-231-2/+8
| | | | tagfile
* Bug 740218 - Full scope needed when making link inside cross-referenced sectionDimitri van Heesch2014-11-171-1/+1
|
* Fixed several Coverity warningsDimitri van Heesch2014-11-151-2/+2
|
* Bug 736992 - Member functions omitted from tagfileDimitri van Heesch2014-09-221-84/+73
|
* Regression class<T extends V> resulted in class<V> as the page titleDimitri van Heesch2014-09-141-1/+1
|
* Merge pull request #214 from ellert/missing-spacesDimitri van Heesch2014-09-031-3/+10
|\ | | | | Bug 651848 & 652276 - Missing spaces in man page output
| * Bug 652276 - Typedefs in manpages has too few linebreak possiblilitiesMattias Ellert2014-08-311-1/+3
| |
| * Use substitute() instead of QString conversionMattias Ellert2014-08-271-2/+1
| |
| * Fix for the second issue in bz 651848Mattias Ellert2014-08-261-1/+4
| |
| * This is the patch attached to bz 651848 by Robin Gareus.Mattias Ellert2014-08-261-1/+4
| |
* | Bug 735759 - Broken man pages due to bad use of autoBreakMattias Ellert2014-08-311-3/+3
| |
* | Bug 735477 - [PATCH] Fix a potential null pointer dereference in ↵Dimitri van Heesch2014-08-301-1/+1
|/ | | | src/memberdef.cpp
* Bug 733605 - Incorrect LaTeX generation for private union member in C++Dimitri van Heesch2014-08-041-10/+1
|
* Template context support for CREATE_SUBDIRSDimitri van Heesch2014-08-021-1/+1
|
* Added lists for indices to template contextDimitri van Heesch2014-08-021-0/+24
|
* New VHDL parser implementationDimitri van Heesch2014-08-021-1/+1
|
* Documentation generator: added support for C# property accessors visibility ↵Maksim Osipov2014-07-041-3/+43
| | | | modifiers.
* Bug 730520 - No documentation generated for method-less C++ structDimitri van Heesch2014-06-161-0/+6
|
* add space between br and / for better compatibilityDimitri van Heesch2014-03-281-1/+1
|
* Bug 724949 - Server side (PHP) search broke in 1.8.3Dimitri van Heesch2014-03-011-1/+3
|