Author: dgorbachev
Date: Sun Jul 24 11:54:56 2011
New Revision: 52833
URL:
http://svn.reactos.org/svn/reactos?rev=52833&view=rev
Log:
[ATL]
Invoke the member function through "this->".
Modified:
trunk/reactos/lib/atl/atlcom.h
Modified: trunk/reactos/lib/atl/atlcom.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/atl/atlcom.h?rev=52833…
==============================================================================
--- trunk/reactos/lib/atl/atlcom.h [iso-8859-1] (original)
+++ trunk/reactos/lib/atl/atlcom.h [iso-8859-1] Sun Jul 24 11:54:56 2011
@@ -321,7 +321,7 @@
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() \
{ \