]> git.saurik.com Git - wxWidgets.git/commitdiff
doxygen warning fix
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 9 Oct 2008 16:42:52 +0000 (16:42 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 9 Oct 2008 16:42:52 +0000 (16:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/ptr_scpd.h
interface/wx/weakref.h

index 96d4f5610b478defccf3cbc8eab1b9c4937a0a54..4d6e47f2551095d4302ec51a843fa579bf57550e 100644 (file)
@@ -275,8 +275,8 @@ public:
     wxScopedTiedPtr(T** ppTie, T* ptr);
 
     /**
-        Destructor frees the pointer help by this object and restores the value stored
-        at the tied location (as specified in the @ref ctor() constructor)
+        Destructor frees the pointer help by this object and restores the value
+        stored at the tied location (as specified in the @ref wxScopedTiedPtr() constructor)
         to the old value.
 
         @warning
@@ -290,8 +290,8 @@ public:
 
 /**
 
-    A scoped pointer template class. It is the template version of
-    the old-style @ref classwx_scoped_ptr "scoped pointer macros".
+    A scoped pointer template class.
+    It is the template version of the old-style @ref wxScopedPtr "scoped pointer macros".
 
     @library{wxbase}
     @category{smartpointers}
index c06a27e11189e2dc29d9ddb73aefea3a06d46828..37130abb9ae94377e109e9b0a6bc2b317c34afc7 100644 (file)
@@ -8,7 +8,7 @@
 
 
 /**
-    @class wxWeakRefDynamic<T>
+    @class wxWeakRefDynamic
 
     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 +28,9 @@
 
     For API documentation, see: wxWeakRef<T>.
 
+    @tparam T
+        @todo docme
+
     @nolibrary
     @category{misc}
 */
@@ -41,7 +44,7 @@ public:
 
 
 /**
-    @class wxWeakRef<T>
+    @class wxWeakRef
 
     wxWeakRef<T> is a template class for weak references to wxWidgets objects,
     such as wxEvtHandler, wxWindow and wxObject.
@@ -91,6 +94,9 @@ public:
     typedef wxWeakRef<wxWindow>      wxWindowRef;
     @endcode
 
+    @tparam T
+        @todo docme
+
     @nolibrary
     @category{misc}