Hello!

When updating to latest release (1.8.3.1), some of the copydoc commands does
not work.
Version 1.8.3 generates the correct result.

I cannot get \copydoc <page> work for the main page. When I reference a page
for copydoc, doxygen generates an empty front page.
\copydoc <object> does not work correctly either - only some of the
documentation are copied.

Here is an example with comments of what happens (or not happens):

==================
/** 
\mainpage Doxygen test

\copydoc main

"copydoc main" only copies the brief description and does not show this line
or lines under.

Some more text.

\copydoc testpage

"copydoc testpage" gives an empty main page

Even some more text
*/

/**
\page testpage This is a test page

With some page text.
*/


#include <stdio.h>
/**
  \brief Entry point for "Hello world"
  
  This is some documentation of the main function.
  
  \param argc Number of arguments
  \param argv Array of char strings with arguments
  \return Exit status
*/
int main(int argc, char ** argv)
{
        printf("Hello world\n");
        exit(0);
}

==================

--
Kjell-Ivar


------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to