Made EVT_SLIDER event happen always; some doc and wxProperty updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-01-21 17:38:28 +00:00
parent 015ee8444a
commit f3a6507198
10 changed files with 111 additions and 96 deletions

View File

@@ -89,7 +89,7 @@ It is very common to iterate on a list as follows:
...
wxNode *node = SomeList.First();
wxNode *node = SomeList.GetFirst();
while (node)
{
wxPoint *point = (wxPoint *)node->Data();
@@ -112,7 +112,7 @@ with
...
delete point;
delete node;
node = SomeList.First();
node = SomeList.GetFirst();
...
\end{verbatim}
@@ -203,9 +203,9 @@ TRUE if successful. The application must delete the actual object separately.
Returns the node whose stored key matches {\it key}. Use on a keyed list only.
\membersection{wxList::First}
\membersection{wxList::GetFirst}
\func{wxNode *}{First}{\void}
\func{wxNode *}{GetFirst}{\void}
Returns the first node in the list (NULL if the list is empty).
@@ -227,9 +227,9 @@ Insert object at front of list.
Insert object before {\it position}.
\membersection{wxList::Last}
\membersection{wxList::GetLast}
\func{wxNode *}{Last}{\void}
\func{wxNode *}{GetLast}{\void}
Returns the last node in the list (NULL if the list is empty).