Applied patch [ 791648 ] wxDateTime: note unimplemented methods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23511 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-09-11 14:22:23 +00:00
parent 4efbec3587
commit 654a0fa974

View File

@@ -1052,18 +1052,19 @@ free ways, you should use \helpref{ParseDateTime}{wxdatetimeparsedatetime} or
This function parses the string {\it date} according to the given This function parses the string {\it date} according to the given
{\it format}. The system {\tt strptime(3)} function is used whenever available, {\it format}. The system {\tt strptime(3)} function is used whenever available,
but even if it is not, this function is still implemented (although support but even if it is not, this function is still implemented, although support
for locale-dependent format specificators such as {\tt "\%c"}, {\tt "\%x"} or for locale-dependent format specifiers such as {\tt "\%c"}, {\tt "\%x"} or {\tt "\%X"} may
{\tt "\%X"} may be not perfect). This function does handle the month and not be perfect and GNU extensions such as {\tt "\%z"} and {\tt "\%Z"} are
weekday names in the current locale on all platforms, however. not implemented. This function does handle the month and weekday
names in the current locale on all platforms, however.
Please the description of ANSI C function {\tt strftime(3)} for the syntax of Please see the description of the ANSI C function {\tt strftime(3)} for the syntax
the format string. of the format string.
The {\it dateDef} parameter is used to fill in the fields which could not be The {\it dateDef} parameter is used to fill in the fields which could not be
determined from the format string. For example, if the format is {\tt "\%d"} determined from the format string. For example, if the format is {\tt "\%d"} (the
(the day of the month), the month and the year are taken from {\it dateDef}. ay of the month), the month and the year are taken from {\it dateDef}. If
If it is not specified, \helpref{Today}{wxdatetimetoday} is used as the it is not specified, \helpref{Today}{wxdatetimetoday} is used as the
default date. default date.
Returns {\tt NULL} if the conversion failed, otherwise return the pointer to Returns {\tt NULL} if the conversion failed, otherwise return the pointer to
@@ -1080,7 +1081,8 @@ will accept anything that may be accepted and will only reject strings which
can not be parsed in any way at all. can not be parsed in any way at all.
Returns {\tt NULL} if the conversion failed, otherwise return the pointer to Returns {\tt NULL} if the conversion failed, otherwise return the pointer to
the character which stopped the scan. the character which stopped the scan. This method is currently not
implemented, so always returns NULL.
\membersection{wxDateTime::ParseDate}\label{wxdatetimeparsedate} \membersection{wxDateTime::ParseDate}\label{wxdatetimeparsedate}