No code changes, fixed various typos.
Applied patch by snowleopard2 fixing typos in interface/. Extended the fixes throughout trunk. Closes #13076. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67384 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
This class has been rewritten to be type safe and to provide the full API of
|
||||
the STL std::list container and should be used like it.
|
||||
The exception is that wxList<T> actually stores pointers and therefore its
|
||||
iterators return pointers and not references to the actual objets in the list
|
||||
iterators return pointers and not references to the actual objects in the list
|
||||
(see example below) and @e value_type is defined as @e T*.
|
||||
wxList<T> destroys an object after removing it only if wxList<T>::DeleteContents
|
||||
has been called.
|
||||
@@ -132,7 +132,7 @@ public:
|
||||
void DeleteContents(bool destroy);
|
||||
|
||||
/**
|
||||
Deletes the given element refered to by @a iter from the list
|
||||
Deletes the given element referred to by @a iter from the list
|
||||
if @a iter is a valid iterator. Returns @true if successful.
|
||||
|
||||
Deletes the actual object if DeleteContents( @true ) was called previously.
|
||||
@@ -148,9 +148,9 @@ public:
|
||||
bool DeleteObject(T* object);
|
||||
|
||||
/**
|
||||
Removes element refered to be @a iter.
|
||||
Removes element referred to be @a iter.
|
||||
|
||||
Deletes the actualy object if DeleteContents( @true ) was called previously.
|
||||
Deletes the actual object if DeleteContents( @true ) was called previously.
|
||||
*/
|
||||
void Erase(const compatibility_iterator& iter);
|
||||
|
||||
@@ -192,7 +192,7 @@ public:
|
||||
T* object);
|
||||
|
||||
/**
|
||||
Inserts @a object before the object refered to be @a iter.
|
||||
Inserts @a object before the object referred to be @a iter.
|
||||
*/
|
||||
wxList<T>::compatibility_iterator Insert(compatibility_iterator iter,
|
||||
T* object);
|
||||
|
Reference in New Issue
Block a user