Doxygen: disable (not working) latex output and update version.

This commit is contained in:
Thomas Geymayer
2014-07-22 01:02:18 +02:00
parent 76fc47b24b
commit 92851135d4
2 changed files with 6 additions and 6 deletions

View File

@@ -38,7 +38,7 @@ PROJECT_NAME = SimGear
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 2.11.0
PROJECT_NUMBER = 3.3.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
@@ -1568,7 +1568,7 @@ EXTRA_SEARCH_MAPPINGS =
# If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output.
# The default value is: YES.
GENERATE_LATEX = YES
GENERATE_LATEX = NO
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of

View File

@@ -167,7 +167,7 @@ namespace canvas
virtual bool hasHeightForWidth() const;
/**
* Returns the preferred height for the given width @q w.
* Returns the preferred height for the given width @a w.
*
* Reimplement heightForWidthImpl() for items providing height for width.
*
@@ -176,7 +176,7 @@ namespace canvas
int heightForWidth(int w) const;
/**
* Returns the minimum height for the given width @q w.
* Returns the minimum height for the given width @a w.
*
* Reimplement minimumHeightForWidthImpl() for items providing height for
* width.
@@ -276,7 +276,7 @@ namespace canvas
virtual SGVec2i maximumSizeImpl() const;
/**
* Returns the preferred height for the given width @q w.
* Returns the preferred height for the given width @a w.
*
* The default implementation returns -1, indicating that the preferred
* height is independent of the given width.
@@ -291,7 +291,7 @@ namespace canvas
virtual int heightForWidthImpl(int w) const;
/**
* Returns the minimum height for the given width @q w.
* Returns the minimum height for the given width @a w.
*
* The default implementation returns -1, indicating that the minimum
* height is independent of the given width.