Changeset 56200

Show
Ignore:
Timestamp:
10/09/08 09:42:52 (6 weeks ago)
Author:
FM
Message:

doxygen warning fix

Location:
wxWidgets/trunk/interface/wx
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • wxWidgets/trunk/interface/wx/ptr_scpd.h

    r54387 r56200  
    276276 
    277277    /** 
    278         Destructor frees the pointer help by this object and restores the value stored 
    279         at the tied location (as specified in the @ref ctor() constructor) 
     278        Destructor frees the pointer help by this object and restores the value 
     279        stored at the tied location (as specified in the @ref wxScopedTiedPtr() constructor) 
    280280        to the old value. 
    281281 
     
    291291/** 
    292292 
    293     A scoped pointer template class. It is the template version of 
    294     the old-style @ref classwx_scoped_ptr "scoped pointer macros". 
     293    A scoped pointer template class. 
     294    It is the template version of the old-style @ref wxScopedPtr "scoped pointer macros". 
    295295 
    296296    @library{wxbase} 
  • wxWidgets/trunk/interface/wx/weakref.h

    r55892 r56200  
    99 
    1010/** 
    11     @class wxWeakRefDynamic<T> 
     11    @class wxWeakRefDynamic 
    1212 
    1313    wxWeakRefDynamic<T> is a template class for weak references that is used in 
     
    2929    For API documentation, see: wxWeakRef<T>. 
    3030 
     31    @tparam T 
     32        @todo docme 
     33 
    3134    @nolibrary 
    3235    @category{misc} 
     
    4245 
    4346/** 
    44     @class wxWeakRef<T> 
     47    @class wxWeakRef 
    4548 
    4649    wxWeakRef<T> is a template class for weak references to wxWidgets objects, 
     
    9194    typedef wxWeakRef<wxWindow>      wxWindowRef; 
    9295    @endcode 
     96 
     97    @tparam T 
     98        @todo docme 
    9399 
    94100    @nolibrary