summaryrefslogtreecommitdiff
path: root/src/debug/di
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2018-05-17 15:20:15 -0700
committerAndrew Au <cshung@gmail.com>2018-11-06 18:34:47 -0800
commit5fd5ef364611d5b608913d26f6ea003a59239594 (patch)
tree6816539e23eb7fa389c63bba5e05c30a889c0218 /src/debug/di
parent4e9171f9c0f718464e3a62614377100f3abae1c8 (diff)
downloadcoreclr-5fd5ef364611d5b608913d26f6ea003a59239594.tar.gz
coreclr-5fd5ef364611d5b608913d26f6ea003a59239594.tar.bz2
coreclr-5fd5ef364611d5b608913d26f6ea003a59239594.zip
ContainerObject -> ContainingObject
Diffstat (limited to 'src/debug/di')
-rw-r--r--src/debug/di/process.cpp4
-rw-r--r--src/debug/di/rspriv.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/di/process.cpp b/src/debug/di/process.cpp
index 8128fe7d77..04f63f830a 100644
--- a/src/debug/di/process.cpp
+++ b/src/debug/di/process.cpp
@@ -2529,7 +2529,7 @@ COM_METHOD CordbProcess::EnableExceptionCallbacksOutsideOfMyCode(BOOL enableExce
return hr;
}
-COM_METHOD CordbProcess::GetContainerObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainerObject)
+COM_METHOD CordbProcess::GetContainingObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainingObject)
{
HRESULT hr = S_OK;
// TODO, databp, I don't know what I am doing, NO_LOCK doesn't sound right
@@ -2552,7 +2552,7 @@ COM_METHOD CordbProcess::GetContainerObject(CORDB_ADDRESS interiorPointer, ICorD
{
_ASSERTE(event.type == DB_IPCE_GET_CONTAINER_RESULT);
CORDB_ADDRESS containerAddress = PTR_TO_CORDB_ADDRESS(event.GetContainerResult.answer);
- hr = this->GetObject(containerAddress, ppContainerObject);
+ hr = this->GetObject(containerAddress, ppContainingObject);
}
PUBLIC_API_END(hr);
diff --git a/src/debug/di/rspriv.h b/src/debug/di/rspriv.h
index 1e01c5cde4..868d6f6d01 100644
--- a/src/debug/di/rspriv.h
+++ b/src/debug/di/rspriv.h
@@ -3165,7 +3165,7 @@ public:
//-----------------------------------------------------------
// ICorDebugProcess9
//-----------------------------------------------------------
- COM_METHOD GetContainerObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainerObject);
+ COM_METHOD GetContainingObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainingObject);
#ifdef FEATURE_LEGACYNETCF_DBG_HOST_CONTROL
// ---------------------------------------------------------------