From 074574b4a6022bd04b3f582b81551e9c75d46b18 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 22 Oct 2008 23:14:48 +0000 Subject: [PATCH] compilation fix for operator=() with DMC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/weakref.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.45.2