From: Thomas Geymayer Date: Mon, 21 Jul 2014 23:02:18 +0000 (+0200) Subject: Doxygen: disable (not working) latex output and update version. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=92851135d43f178898d6be7e428e7483613b730b;p=simgear.git Doxygen: disable (not working) latex output and update version. --- diff --git a/Doxyfile b/Doxyfile index 16fd65ae..0017d442 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/simgear/canvas/layout/LayoutItem.hxx b/simgear/canvas/layout/LayoutItem.hxx index 130c47c5..1adf2c67 100644 --- a/simgear/canvas/layout/LayoutItem.hxx +++ b/simgear/canvas/layout/LayoutItem.hxx @@ -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.