From: Jaakko Salli Date: Tue, 22 Sep 2009 14:52:57 +0000 (+0000) Subject: Minor clarifation and typo fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/57f2175441c318e0c39c0e44e606194fd875b5bc Minor clarifation and typo fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/any.h b/interface/wx/any.h index acbd9157a2..5623c8d9e0 100644 --- a/interface/wx/any.h +++ b/interface/wx/any.h @@ -13,9 +13,9 @@ The wxAny class represents a container for any type. Its value can be changed at run time, possibly to a different type of value. - wxAny is successor class for wxVariant, essentially doing the same thing - in a more modern, template-based manner and with transparent support - for any user data type. + wxAny is a backwards incompatible successor class for wxVariant, + essentially doing the same thing in a more modern, template-based manner + and with transparent support for any user data type. Some pseudo-code'ish example of use with arbitrary user data: @@ -122,7 +122,7 @@ public: Template function that retrieves and converts the value of this wxAny to the type that T* value is. - @return Returns @true if conversion was succesfull. + @return Returns @true if conversion was successful. */ template bool GetAs(T* value) const;