# 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
# 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
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.
*
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.
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.
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.