Fix Doxygen warnings due to documenting overloaded functions together.
Apparently we can't make @param statements apply just to some overloads, so document them separately now. See #15346. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -305,7 +305,21 @@ public:
|
||||
typedef T ValueType;
|
||||
|
||||
/**
|
||||
Validator constructor.
|
||||
Constructor for validator using the default precision.
|
||||
|
||||
@param value
|
||||
A pointer to the variable associated with the validator. If non
|
||||
@NULL, this variable should have a lifetime equal to or longer than
|
||||
the validator lifetime (which is usually determined by the lifetime
|
||||
of the window).
|
||||
@param style
|
||||
A combination of wxNumValidatorStyle enum values.
|
||||
*/
|
||||
wxFloatingPointValidator(ValueType *value = NULL,
|
||||
int style = wxNUM_VAL_DEFAULT);
|
||||
|
||||
/**
|
||||
Constructor for validator specifying the precision.
|
||||
|
||||
@param value
|
||||
A pointer to the variable associated with the validator. If non
|
||||
@@ -318,13 +332,9 @@ public:
|
||||
The number of decimal digits after the decimal separator to show
|
||||
and accept.
|
||||
*/
|
||||
//@{
|
||||
wxFloatingPointValidator(ValueType *value = NULL,
|
||||
int style = wxNUM_VAL_DEFAULT);
|
||||
wxFloatingPointValidator(int precision,
|
||||
ValueType *value = NULL,
|
||||
int style = wxNUM_VAL_DEFAULT);
|
||||
//@}
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user