From 33b1f742e655ac9ed44f66049fbbf27b08d57c05 Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Sun, 24 Jul 2011 11:54:56 +0000 Subject: [PATCH] [ATL] Invoke the member function through "this->". svn path=/trunk/; revision=52833 --- reactos/lib/atl/atlcom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/atl/atlcom.h b/reactos/lib/atl/atlcom.h index cc0b8737ca8..f4a13e5540c 100644 --- a/reactos/lib/atl/atlcom.h +++ b/reactos/lib/atl/atlcom.h @@ -321,7 +321,7 @@ public: \ typedef x _ComMapClass; \ HRESULT _InternalQueryInterface(REFIID iid, void **ppvObject) \ { \ - return InternalQueryInterface(this, _GetEntries(), iid, ppvObject); \ + return this->InternalQueryInterface(this, _GetEntries(), iid, ppvObject); \ } \ const static ATL::_ATL_INTMAP_ENTRY *WINAPI _GetEntries() \ { \