]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/weakref.h
supporting clang 2.0 under xcode, see #12332
[wxWidgets.git] / include / wx / weakref.h
index 08878903f48ada52804553a10c6c04c425a2b7bd..a59a7e4a0a417299a910d26f96986ec3f677ecbd 100644 (file)
@@ -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<T>& operator=(const wxWeakRef<T>& wr)
     {
-        AssignCopy(wr);
+        this->AssignCopy(wr);
         return *this;
     }