[Doxygen-users] Missing HTML table data vertical align
Brought to you by:
dimitri
From: Christian W. <chr...@ho...> - 2001-10-03 10:34:30
|
In the HTML output for "Member Function Documentation": If a method takes just one parameter and also is declared "pure virtual", "const" etc (additional text is places to the right of the member function), the parameter is vertically aligned wrong (is it defaulted to center?). It can be seen if the browser window is made smaller. The output is correct for a method that takes more than one parameter (the html table is done differently there). Using: doxygen 1.2.11, MS Windows Here is an example class showing this: /** * My Test class */ class Test { public: /** * Override this function */ virtual void myFunction(const std::string& myParameter) const = 0; /** * Override this function */ virtual void myFunction(const std::string& myParameter, const std::string& refId) const = 0; }; |