]> git.saurik.com Git - wxWidgets.git/commitdiff
some minor fixes to the docs (bugs 13271[56])
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 16 Feb 2001 18:49:47 +0000 (18:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 16 Feb 2001 18:49:47 +0000 (18:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9379 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/evthand.tex
docs/latex/wx/list.tex
docs/latex/wx/object.tex

index 2d74c6a41c2ffd5763471cd32cf7b52d7760ad3a..cc269395f3c522414ddde35ea326fc9e8bdd2881 100644 (file)
@@ -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.
index 1b96da6cd662610afff752450b724dbb13df27d0..9f3a5f8385486ef16583cf04c44bef70b0f538d0 100644 (file)
@@ -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}
index 6736be57900486572b40828929b84fcc54056f61..a93d8e02d1919886e98070b6165b7b4ad2013a6d 100644 (file)
@@ -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}}