]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/weakref.h
handle error in GetDataSize()
[wxWidgets.git] / interface / wx / weakref.h
index c06a27e11189e2dc29d9ddb73aefea3a06d46828..a94b65f6561dc5cd6c21d0583fbb5b9a4eaadf9a 100644 (file)
@@ -8,7 +8,6 @@
 
 
 /**
-    @class wxWeakRefDynamic<T>
 
     wxWeakRefDynamic<T> is a template class for weak references that is used in
     the same way as wxWeakRef<T>. The only difference is that wxWeakRefDynamic
@@ -28,6 +27,9 @@
 
     For API documentation, see: wxWeakRef<T>.
 
+    @tparam T
+        @todo docme
+
     @nolibrary
     @category{misc}
 */
@@ -41,8 +43,6 @@ public:
 
 
 /**
-    @class wxWeakRef<T>
-
     wxWeakRef<T> is a template class for weak references to wxWidgets objects,
     such as wxEvtHandler, wxWindow and wxObject.
     A weak reference behaves much like an ordinary pointer, but when the object
@@ -91,6 +91,9 @@ public:
     typedef wxWeakRef<wxWindow>      wxWindowRef;
     @endcode
 
+    @tparam T
+        @todo docme
+
     @nolibrary
     @category{misc}