]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/ptr_scpd.h
clarify role of wxToolBarToolBase (fixes #9874)
[wxWidgets.git] / interface / wx / ptr_scpd.h
index 96d4f5610b478defccf3cbc8eab1b9c4937a0a54..2434a6dced43954ec0798950e8f2ade6a4d1bbc5 100644 (file)
@@ -56,7 +56,7 @@
     theCharObj[0] = "!";
     @endcode
 
-    @section wxscopedptr_newpointers Declaring new smart pointer types
+    @section scopedptr_newpointers Declaring new smart pointer types
 
     To declare the smart pointer class @c CLASSNAME containing pointes to
     a (possibly incomplete) type @c TYPE you should use
@@ -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}