removed incorrect labels

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7144 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-04-12 23:30:47 +00:00
parent 6b9c32dccc
commit bea6a318d9
3 changed files with 7 additions and 11 deletions

View File

@@ -80,7 +80,7 @@ Note that changing the selected date will result in either of
{\tt EVT\_CALENDAR\_DAY}, {\tt MONTH} or {\tt YEAR} events and
{\tt EVT\_CALENDAR\_SEL\_CHANGED} one.
\wxheading{Constants}\label{wxcalendarctrlconstants}
\wxheading{Constants}
The following are the possible return values for
\helpref{HitTest}{wxcalendarctrlhittest} method:
@@ -276,7 +276,7 @@ $1\ldots31$).
\func{wxCalendarHitTestResult}{HitTest}{\param{const wxPoint\& }{pos}, \param{wxDateTime* }{date = NULL}, \param{wxDateTime::WeekDay* }{wd = NULL}}
Returns one of {\tt wxCAL\_HITTEST\_XXX}
\helpref{constants}{wxcalendarctrlconstants} and fills either {\it date} or
\helpref{constants}{wxcalendarctrl} and fills either {\it date} or
{\it wd} pointer with the corresponding value depending on the hit test code.
\section{\class{wxCalendarDateAttr}}\label{wxcalendardateattr}

View File

@@ -26,7 +26,6 @@ wxDateTime object.
All the following constants are defined inside wxDateTime class (i.e., to refer to
them you should prepend their names with {\tt wxDateTime::}).
\label{wxdatetimetimezones}
Time zone symbolic names:
\begin{verbatim}
@@ -109,7 +108,6 @@ flags:
};
\end{verbatim}
\label{wxdatetimecalendar}
Several functions accept an extra parameter specifying the calendar to use
(although most of them only support now the Gregorian calendar). This
parameters is one of the following values:
@@ -122,7 +120,6 @@ parameters is one of the following values:
};
\end{verbatim}
\label{wxdatetimecountry}
Date calculatiosn often depend on the country adn wxDateTime allows to set the
country which conventions should be used using
\helpref{SetCountry}{wxdatetimesetcountry}. It takes one of the following
@@ -148,7 +145,6 @@ values as parameter:
};
\end{verbatim}
\label{wxdatetimeweekstart}
Differnet parst of the world use different conventions for the week start.
In some countries, the week starts on Sunday, while in others - on Monday.
The ISO standard doesn't address this issue, so we support both conventions in
@@ -571,8 +567,8 @@ Example:
Sets the country to use by default. This setting influences the DST
calculations, date formatting and other things.
The possible values for {\it country} parameter are enumerated
\helpref{here}{wxdatetimecountry}.
The possible values for {\it country} parameter are enumerated in
\helpref{wxDateTime constants section}{wxdatetime}.
\wxheading{See also}
@@ -817,7 +813,7 @@ Returns the number of the week of the year this date is in. The first week of
the year is, according to international standards, the one containing Jan 4.
The week number is in $1\ldots53$ range ($52$ for non leap years).
The function depends on the \helpref{week start}{wxdatetimeweekstart} convention
The function depends on the \helpref{week start}{wxdatetime} convention
specified by the {\it flags} argument.
\membersection{wxDateTime::GetWeekOfMonth}\label{wxdatetimegetweekofmonth}
@@ -828,7 +824,7 @@ Returns the ordinal number of the week in the month (in $1\ldots5$ range).
As \helpref{GetWeekOfYear}{wxdatetimegetweekofyear}, this function supports
both conventions for the week start. See the description of these
\helpref{week start}{wxdatetimeweekstart} conventions.
\helpref{week start}{wxdatetime} conventions.
\membersection{wxDateTime::IsWorkDay}\label{wxdatetimeisworkday}

View File

@@ -175,7 +175,7 @@ simply print time in any time zone.
To see how to do it, the last issue to address is how to construct a TimeZone
object which must be passed to all these methods. First of all, you may construct
it manually by specifying the time zone offset in seconds from GMT, but
usually you will just use one of the \helpref{symbolic time zone names}{wxdatetimetimezones} and
usually you will just use one of the \helpref{symbolic time zone names}{wxdatetime} and
let the conversion constructor do the job.
I.e. you would just write