X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f2468e96a3887eb767ed6fcf452834a4c7b7a28..1e43584aa751510ef59ce97ea0a5abad7241365a:/include/wx/weakref.h diff --git a/include/wx/weakref.h b/include/wx/weakref.h index 08878903f4..a59a7e4a0a 100644 --- a/include/wx/weakref.h +++ b/include/wx/weakref.h @@ -218,7 +218,7 @@ public: // 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__ @@ -239,7 +239,7 @@ public: wxWeakRef& operator=(const wxWeakRef& wr) { - AssignCopy(wr); + this->AssignCopy(wr); return *this; }