]> git.saurik.com Git - wxWidgets.git/commitdiff
Minor clarifation and typo fix
authorJaakko Salli <jaakko.salli@dnainternet.net>
Tue, 22 Sep 2009 14:52:57 +0000 (14:52 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Tue, 22 Sep 2009 14:52:57 +0000 (14:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/any.h

index acbd9157a2adf983923f171ef0b036b3d8944762..5623c8d9e0b5efecf6e1049cea7f142f18e0e7fb 100644 (file)
@@ -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<typename T>
     bool GetAs(T* value) const;