X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f2468e96a3887eb767ed6fcf452834a4c7b7a28..9c805dec6caf3c98a3797898cffe795b5b56e606:/include/wx/weakref.h diff --git a/include/wx/weakref.h b/include/wx/weakref.h index 08878903f4..a17c36d91b 100644 --- a/include/wx/weakref.h +++ b/include/wx/weakref.h @@ -17,7 +17,7 @@ // 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). 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) || \ @@ -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; }