Improve wxID_AUTO_{LOWEST,HIGHEST} description

Explain that the values of these constants are not 0 and 1, as could be
misconstrued by just looking at the enum declaration.
This commit is contained in:
Vadim Zeitlin
2018-08-18 11:08:14 +02:00
parent c6af757edb
commit ad224330c0

View File

@@ -564,13 +564,19 @@ enum wxStandardID
{
/**
This id delimits the lower bound of the range used by automatically-generated ids
(i.e. those used when wxID_ANY is specified during construction).
(i.e.\ those used when wxID_ANY is specified during construction).
It is defined as a relatively large negative number and its exact value
is platform-dependent.
*/
wxID_AUTO_LOWEST,
/**
This id delimits the upper bound of the range used by automatically-generated ids
(i.e. those used when wxID_ANY is specified during construction).
(i.e.\ those used when wxID_ANY is specified during construction).
It is defined as a relatively small negative number and its exact value
is platform-dependent.
*/
wxID_AUTO_HIGHEST,