// below is not used by at least g++4 when a literal NULL is used
wxWeakRef(T *pobj)
{
- Assign(pobj);
+ this->Assign(pobj);
}
#endif // !__VISUALC6__
wxWeakRef<T>& operator=(const wxWeakRef<T>& wr)
{
- AssignCopy(wr);
+ this->AssignCopy(wr);
return *this;
}