some minor fixes to the docs (bugs 13271[56])
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9379 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -46,9 +46,10 @@ method.
|
||||
|
||||
\wxheading{Remarks}
|
||||
|
||||
Note that this requires that the event has a fully implemented Clone()
|
||||
Note that this requires that the event implements
|
||||
\helpref{CopyObject}{wxobjectcopyobject}
|
||||
method so that the event can be duplicated and stored until it gets processed later.
|
||||
Not all events in wxWindows currently have a fully implemented Clone() method,
|
||||
Not all events in wxWindows currently fully implement this method,
|
||||
so you may have to look at the source to verify this.
|
||||
|
||||
This methods automatically wakes up idle handling even if the underlying window
|
||||
@@ -61,6 +62,7 @@ about the status of other working threads and this has to be done using this
|
||||
method - which also means that this method is thread safe by means of using
|
||||
crtical sections where needed.
|
||||
|
||||
% VZ: bad idea IMHO - we're going to have a lot of problems with this
|
||||
Furthermore, it may be noted that some ports of wxWindows will probably move
|
||||
to using this method more and more in preference over calling ProcessEvent()
|
||||
directly so as to avoid problems with reentrant code.
|
||||
|
@@ -230,7 +230,7 @@ Returns the last node in the list (NULL if the list is empty).
|
||||
|
||||
\func{int}{IndexOf}{\param{wxObject*}{ obj }}
|
||||
|
||||
Returns the index of {\it obj} within the list or NOT\_FOUND if {\it obj}
|
||||
Returns the index of {\it obj} within the list or wxNOT\_FOUND if {\it obj}
|
||||
is not found in the list.
|
||||
|
||||
\membersection{wxList::Insert}\label{wxlistinsert}
|
||||
|
@@ -48,6 +48,13 @@ Pointer to an object which is the object's reference-counted data.
|
||||
\helpref{wxObject::GetRefData}{wxobjectgetrefdata},\rtfsp
|
||||
\helpref{wxObjectRefData}{wxobjectrefdata}
|
||||
|
||||
\membersection{wxObject::CopyObject}\label{wxobjectcopyobject}
|
||||
|
||||
\func{virtual void}{CopyObject}{\param{wxObject\&}{ object\_dest}}
|
||||
|
||||
Create a copy of this object in object\_dest. Must perform a full copy of self
|
||||
so that object\_dest will be valid after this object is deleted
|
||||
|
||||
\membersection{wxObject::Dump}\label{wxobjectdump}
|
||||
|
||||
\func{void}{Dump}{\param{ostream\&}{ stream}}
|
||||
|
Reference in New Issue
Block a user