]> git.mxchange.org Git - simgear.git/commitdiff
Doxygen: disable (not working) latex output and update version.
authorThomas Geymayer <tomgey@gmail.com>
Mon, 21 Jul 2014 23:02:18 +0000 (01:02 +0200)
committerThomas Geymayer <tomgey@gmail.com>
Tue, 22 Jul 2014 10:51:01 +0000 (12:51 +0200)
Doxyfile
simgear/canvas/layout/LayoutItem.hxx

index 16fd65aec85edc1198cac657d032b55a1394c0fa..0017d442e4650634f81db9b6c7699ddeeca02e78 100644 (file)
--- 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
index 130c47c5f9957e152e45b6a4d9042fc3ac0284bc..1adf2c67b5224d25994bd660ae0f0fa392faf90b 100644 (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.