X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12f5e1e78fe906050ff2fee9529476db332633f0..5267aefd85739afd26bd19bfba998005119db446:/interface/wx/ptr_scpd.h diff --git a/interface/wx/ptr_scpd.h b/interface/wx/ptr_scpd.h index 96d4f5610b..2434a6dced 100644 --- a/interface/wx/ptr_scpd.h +++ b/interface/wx/ptr_scpd.h @@ -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}