summaryrefslogtreecommitdiff
path: root/bridges/source/remote/urp
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/source/remote/urp')
-rw-r--r--bridges/source/remote/urp/urp_job.cxx6
-rw-r--r--bridges/source/remote/urp/urp_job.hxx2
-rw-r--r--bridges/source/remote/urp/urp_reader.cxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/bridges/source/remote/urp/urp_job.cxx b/bridges/source/remote/urp/urp_job.cxx
index 62d438632..23513cb4e 100644
--- a/bridges/source/remote/urp/urp_job.cxx
+++ b/bridges/source/remote/urp/urp_job.cxx
@@ -154,7 +154,7 @@ namespace bridges_urp
//-------------------------------
// Handle the reply, unpack data
//-------------------------------
- if( m_bExceptionOccured )
+ if( m_bExceptionOccurred )
{
bReturn = m_pUnmarshal->unpackAny( *m_ppException );
}
@@ -513,13 +513,13 @@ namespace bridges_urp
sMessage.appendAscii( RTL_CONSTASCII_STRINGPARAM( "URP_Bridge : disposed\n" ) );
sMessage.append( m_pBridgeImpl->getErrorsAsString() );
prepareRuntimeExceptionClientSide( m_ppException, sMessage.makeStringAndClear() );
- m_bExceptionOccured = sal_True;
+ m_bExceptionOccurred = sal_True;
}
else
{
OSL_ASSERT( pDisposeReason == (void*)this );
}
- if( !m_bExceptionOccured )
+ if( !m_bExceptionOccurred )
{
*m_ppException = 0;
}
diff --git a/bridges/source/remote/urp/urp_job.hxx b/bridges/source/remote/urp/urp_job.hxx
index fe353e8c7..1a0d99675 100644
--- a/bridges/source/remote/urp/urp_job.hxx
+++ b/bridges/source/remote/urp/urp_job.hxx
@@ -127,7 +127,7 @@ public:
public:
typelib_InterfaceMethodTypeDescription *m_pMethodType;
typelib_InterfaceAttributeTypeDescription *m_pAttributeType;
- sal_Bool m_bExceptionOccured;
+ sal_Bool m_bExceptionOccurred;
private:
void **m_ppArgs;
diff --git a/bridges/source/remote/urp/urp_reader.cxx b/bridges/source/remote/urp/urp_reader.cxx
index 1dfaf30d4..6b55b21ca 100644
--- a/bridges/source/remote/urp/urp_reader.cxx
+++ b/bridges/source/remote/urp/urp_reader.cxx
@@ -776,7 +776,7 @@ void OReaderThread::run()
break;
}
- pClientJob->m_bExceptionOccured = flags.bException;
+ pClientJob->m_bExceptionOccurred = flags.bException;
pClientJob->setUnmarshal( &m_unmarshal );
#ifdef BRIDGES_URP_PROT