}
}
- void AssignCopy( const wxWeakRefStatic& wr )
+ void AssignCopy(const wxWeakRefStatic& wr)
{
Assign( wr.m_pobj );
}
void AssignCopy(const wxWeakRefImpl& wr)
{
- DoAssign( wr.m_pobj, wr.m_ptbase );
+ DoAssign(wr.m_pobj, wr.m_ptbase);
}
void DoAssign( T* pobj, wxTrackable *ptbase ) {
return *this;
}
- virtual ~wxWeakRef() { Release(); }
+ virtual ~wxWeakRef() { this->Release(); }
// Smart pointer functions
- T& operator*() const { return *m_pobj; }
- T* operator->() const { return m_pobj; }
+ T& operator*() const { return *this->m_pobj; }
+ T* operator->() const { return this->m_pobj; }
- T* get() const { return m_pobj; }
-
- // test for pointer validity: defining conversion to unspecified_bool_type
- // and not more obvious bool to avoid implicit conversions to integer types
- typedef T *(wxWeakRef<T>::*unspecified_bool_type)() const;
- operator unspecified_bool_type() const
- {
- return this->m_pobj ? &wxWeakRef<T>::get : NULL;
- }
+ T* get() const { return this->m_pobj; }
+ operator T*() const { return get(); }
};
// Weak ref implementation assign objects are queried for wxTrackable
// using dynamic_cast<>
-template<class T>
+template <class T>
class wxWeakRefDynamic : public wxTrackerNode
{
public:
}
}
- void AssignCopy(const wxWeakRefDynamic& wr)
- {
- Assign(wr.m_pobj);
- }
-
virtual void OnObjectDestroy()
{
wxASSERT_MSG( m_pobj, "tracked object should have removed us itself" );