Correct wxDateTime::GetTicks() documentation

Assert only happens if the object is not initialized, not if contains a
moment outside of the standard time_t range.

Closes #17927.
This commit is contained in:
Vadim Zeitlin 2017-07-29 20:43:11 +02:00
parent 7df843f396
commit 24623c4c85

View File

@ -561,8 +561,13 @@ public:
/**
Returns the number of seconds since Jan 1, 1970 UTC.
An assert failure will occur if the date is not in the range covered by
@c time_t type, use GetValue() if you work with dates outside of it.
If the date is not in the range covered by 32 bit @c time_t type, @c -1
is returned, use GetValue() if you work with dates outside of this
range.
Additionally, this method must be called on an initialized date object
and an assertion failure occurs if it is called on an object for which
IsValid() is false.
*/
time_t GetTicks() const;