From: Vadim Zeitlin Date: Wed, 22 Oct 2008 23:14:48 +0000 (+0000) Subject: compilation fix for operator=() with DMC X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/074574b4a6022bd04b3f582b81551e9c75d46b18 compilation fix for operator=() with DMC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/weakref.h b/include/wx/weakref.h index af0a6c0817..74b590d627 100644 --- a/include/wx/weakref.h +++ b/include/wx/weakref.h @@ -225,7 +225,7 @@ public: template wxWeakRef& operator=(TDerived* pobj) { - Assign(pobj); + this->Assign(pobj); return *this; }