Commit 8b0ae7ca authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.4.6-20060202

parent e6060ed2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.6-20060115
DOXYGEN Version 1.4.6-20060202

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (15 January 2006)
Dimitri van Heesch (02 February 2006)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.6_20060115
DOXYGEN Version 1.4.6_20060202

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (15 January 2006)
Dimitri van Heesch (dimitri@stack.nl) (02 February 2006)
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ doxygen_version_minor=4
doxygen_version_revision=6

#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
doxygen_version_mmn=20060115
doxygen_version_mmn=20060202

bin_dirs=`echo $PATH | sed -e "s/:/ /g"`

+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ declaration and the detailed description before the member definition.
If you want to document the members of a file, struct, union, class, or enum,
and you want to put the documentation for these members inside the compound,
it is sometimes desired to place the documentation block after the member 
instead of before. For this purpose you should put an additional \< marker
instead of before. For this purpose you have to put an additional \< marker
in the comment block.

Here are some examples:
+2 −1
Original line number Diff line number Diff line
@@ -814,6 +814,7 @@ static bool getLinkInScope(const QCString &c, // scope
    Definition *d = md->getOuterScope()==Doxygen::globalScope ?
	            md->getBodyDef() : md->getOuterScope();
    if (md->getGroupDef()) d = md->getGroupDef();
    //printf("d=%p linkable=%d\n",d,d?d->isLinkable():0);
    if (d && d->isLinkable())
    {
      g_theCallContext.setClass(stripClassName(md->typeString()));
@@ -1777,7 +1778,7 @@ OPERATOR {ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}
<SkipCPP>"//"				{ 
  					  g_code->codify(yytext);
					}
<Body>"{"				{ 
<Body,FuncCall>"{"			{ 
                                          g_theVarContext.pushScope();

  					  g_scopeStack.push(INNERBLOCK);
Loading