// Some compilers (VC6, Borland, g++ < 3.3) have problem with template specialization.
// However, this is only used for optimization purposes (a smaller wxWeakRef pointer)
// (and the corner case of wxWeakRef<wxObject>). So for those compilers, we can fall
-// back to the non-optimal case, where we use a the same type of weak ref (static one)
+// back to the non-optimal case, where we use the same type of weak ref (static one)
// in all cases. See defs.h for various setting these defines depending on compiler.
#if !defined(HAVE_PARTIAL_SPECIALIZATION) || \
// 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;
}