Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #521 from albert-github/feature/bug_722112 | Dimitri van Heesch | 2016-09-21 | 1 | -1/+7 |
|\ | | | | | Bug 722112 - 'static' and 'throw' C++ keywords not colored | ||||
| * | Bug 722112 - 'static' and 'throw' C++ keywords not colored | albert-github | 2016-09-11 | 1 | -1/+7 |
| | | | | | | | | In case we don't specify a name with a type in the prototype of a function the type is still stored and should be moved to the type/ | ||||
* | | flex: use %option instead of command line options. | Adrian Negreanu | 2016-09-21 | 1 | -0/+2 |
| | | |||||
* | | Fixed cross referencing issue when using bitfields. | Dimitri van Heesch | 2016-09-20 | 1 | -1/+1 |
|/ | |||||
* | Bug 770660 - Code snippet always shows line numbers from 1 | albert-github | 2016-09-03 | 1 | -4/+5 |
| | | | | | | | | | This patch makes the handling of the \snippet and other commands consistent between the different languages (no line numbers anymore with python) and also introduces analogous to \includelineno the command \snippetlineno. Some non relevant changes: - *code.l Calculation of the end line was incorrect, in case of a snippet the end line was the number of lines of the snippet and not reltive to the start line. - *code.l made consistent over the different laguages, enabling exBlock and inlineFragment - testing/indexpage.xml in test 14 the \snippet command was used with python and giving line numbers, linenumbers are now gone (consistency) | ||||
* | Bug 749924 - Doxygen handles comments in Objective-C code blocks incorrectly. | Dimitri van Heesch | 2016-05-10 | 1 | -8/+56 |
| | |||||
* | Bug 762670 - References for one function can inherit References from ↵ | Dimitri van Heesch | 2016-03-20 | 1 | -29/+38 |
| | | | | subsequent non documented function | ||||
* | Changed configuration mechanism to directly access options in order to ↵ | Dimitri van Heesch | 2016-01-17 | 1 | -12/+12 |
| | | | | improve performance | ||||
* | Support set in code highlighting | albert-github | 2015-12-09 | 1 | -1/+1 |
| | | | | Analogous to the C# property get also the property set is supported | ||||
* | Fixed preprocessor macros for flex version check | lameventanas | 2015-11-25 | 1 | -1/+1 |
| | |||||
* | Support flex-2.6.0 | Dimitri van Heesch | 2015-11-22 | 1 | -2/+2 |
| | |||||
* | Support flex-2.6.0 | Heiko Becker | 2015-11-22 | 1 | -1/+1 |
| | | | | | | The version checks only considered YY_FLEX_SUBMINOR_VERSION and did not take YY_FLEX_MINOR_VERSION into account, which made them fail with flex-2.6.0. | ||||
* | Bug 629249 - Incorrect "References" and "Referenced by" | albert-github | 2015-09-30 | 1 | -0/+5 |
| | | | | Discrepancy between number of push and pop calls (push was called with "{" but no pop with "}", in the later case the <*>. rule was used) | ||||
* | drop #include <unistd.h> | Adrian Negreanu | 2015-05-15 | 1 | -2/+2 |
| | | | | Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com> | ||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Remove unused local and static global variables | albert-github | 2014-12-27 | 1 | -1/+0 |
| | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools. | ||||
* | Bug 731363 - Callgraphs for C# only generated for methods inside the same class | Dimitri van Heesch | 2014-06-10 | 1 | -75/+81 |
| | |||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Bug 721169 - Wrong call graph in simple situation | Dimitri van Heesch | 2014-01-08 | 1 | -3/+34 |
| | |||||
* | Fixed Tidy's 'empty span' warning in HTML output | Dimitri van Heesch | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Reduced and improved functionality of QList | Dimitri van Heesch | 2013-12-30 | 1 | -14/+11 |
| | | | | | | | | | - 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 720580 - inline source browser shows wrong code with muilti-line c++11's ↵ | Dimitri van Heesch | 2013-12-24 | 1 | -1/+1 |
| | | | | raw strings | ||||
* | Debug output for lexical analyzer | Albert | 2013-11-13 | 1 | -0/+6 |
| | | | | | | | | | | | | | | In case of error messages like: input buffer overflow, can't enlarge buffer because scanner uses REJECT it is not always directly clear from which lexical analyzer (.l file) this problem comes. This patch helps to find these problems and does the following things: - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given: Entering lexical analyzer: pre.l (for: ..../file.c) and at the end: Finished lexical analyzer: pre.l (for: ..../file.c) - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like: --entering lexical analyzer: pre.l (for: ..../file.c) --finished lexical analyzer: pre.l (for: ..../file.c) | ||||
* | Bug 707641 - `FILTER_SOURCE_FILES=YES` required to build CALL_GRAPHS | Sergio Oller | 2013-09-28 | 1 | -9/+13 |
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=707641 Add references if the file is filtered, as the parser does not know whether we are insideBody or not. | ||||
* | Bug 154880 - if "using namespace" used, call of a static member function in ↵ | Dimitri van Heesch | 2013-09-09 | 1 | -1/+1 |
| | | | | C++ is not recognized or recognized wrong | ||||
* | Added SOURCE_TOOLTIPS option for advanced tooltip support while source browsing | Dimitri van Heesch | 2013-07-02 | 1 | -37/+27 |
| | |||||
* | Bug 701314 - URLs are not created on C# classes in some cases | Dimitri van Heesch | 2013-06-15 | 1 | -5/+45 |
| | |||||
* | Bug 700740 - Doxygen does not create links on C++ 11 style enum classes | Dimitri van Heesch | 2013-06-15 | 1 | -3/+3 |
| | |||||
* | Release-1.8.3.1-20130512 | Dimitri van Heesch | 2013-05-12 | 1 | -57/+40 |
| | |||||
* | Release-1.8.3.1-20130324 | Dimitri van Heesch | 2013-03-24 | 1 | -43/+10 |
| | |||||
* | Release-1.8.3.1-20130209 | Dimitri van Heesch | 2013-02-09 | 1 | -44/+57 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -8/+8 |
| | |||||
* | Release-1.8.3 | Dimitri van Heesch | 2012-12-26 | 1 | -3/+3 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -2/+7 |
| | |||||
* | Release-1.8.2-20120930 | Dimitri van Heesch | 2012-09-30 | 1 | -1/+1 |
| | |||||
* | Release-1.8.2 | Dimitri van Heesch | 2012-08-11 | 1 | -15/+19 |
| | |||||
* | Release-1.8.1.2-20120729 | Dimitri van Heesch | 2012-07-29 | 1 | -13/+81 |
| | |||||
* | Release-1.8.1.2 | Dimitri van Heesch | 2012-07-12 | 1 | -1/+2 |
| | |||||
* | 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 | -2/+18 |
| | |||||
* | Release-1.8.0-20120408 | Dimitri van Heesch | 2012-04-08 | 1 | -1/+5 |
| | |||||
* | Release-1.8.0 | Dimitri van Heesch | 2012-03-17 | 1 | -1/+9 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -9/+35 |
| | |||||
* | Release-1.7.6.1-20120122 | Dimitri van Heesch | 2012-01-22 | 1 | -1/+1 |
| | |||||
* | Release-1.7.6.1-20111226 | Dimitri van Heesch | 2011-12-26 | 1 | -13/+41 |
| | |||||
* | Release-1.7.5.1-20111117 | Dimitri van Heesch | 2011-11-17 | 1 | -13/+13 |
| | |||||
* | Release-1.7.5.1-20111027 | Dimitri van Heesch | 2011-10-27 | 1 | -5/+31 |
| | |||||
* | Release-1.7.5.1 | Dimitri van Heesch | 2011-08-21 | 1 | -5/+4 |
| | |||||
* | Release-1.7.5 | Dimitri van Heesch | 2011-08-14 | 1 | -10/+17 |
| | |||||
* | Release-1.7.4-20110606 | Dimitri van Heesch | 2011-06-06 | 1 | -1/+1 |
| |