summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/AffineBridge/AffineBridge.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/AffineBridge/AffineBridge.cxx b/cppu/source/AffineBridge/AffineBridge.cxx
index 657a1630680f..85463261627a 100644
--- a/cppu/source/AffineBridge/AffineBridge.cxx
+++ b/cppu/source/AffineBridge/AffineBridge.cxx
@@ -255,11 +255,11 @@ void AffineBridge::v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam)
m_pInnerThread->resume();
}
- bool resetId = false;
+ bool bResetId = false;
if (!m_outerThreadId)
{
m_outerThreadId = osl::Thread::getCurrentIdentifier();
- resetId = true;
+ bResetId = true;
}
m_message = CB_FPOINTER;
@@ -269,7 +269,7 @@ void AffineBridge::v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam)
outerDispatch(1);
- if (resetId)
+ if (bResetId)
m_outerThreadId = 0;
}