Kaydet (Commit) 190085dd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Work around MSC "'override' cannot be used with 'inline'" bug

Change-Id: I35170712b8f0c83ab35cb5ef7115a6dc434a7a4f
üst 0d1abac3
...@@ -98,7 +98,7 @@ class Gate : public IGate ...@@ -98,7 +98,7 @@ class Gate : public IGate
@onerror - @onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline virtual void open() SAL_OVERRIDE virtual void open() SAL_OVERRIDE
{ {
// We must safe access to our internal member! // We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock ); ::osl::MutexGuard aLock( m_aAccessLock );
...@@ -121,7 +121,7 @@ class Gate : public IGate ...@@ -121,7 +121,7 @@ class Gate : public IGate
@onerror - @onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline virtual void close() SAL_OVERRIDE virtual void close() SAL_OVERRIDE
{ {
// We must safe access to our internal member! // We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock ); ::osl::MutexGuard aLock( m_aAccessLock );
...@@ -147,7 +147,7 @@ class Gate : public IGate ...@@ -147,7 +147,7 @@ class Gate : public IGate
@onerror - @onerror -
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline virtual void openGap() SAL_OVERRIDE virtual void openGap() SAL_OVERRIDE
{ {
// We must safe access to our internal member! // We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock ); ::osl::MutexGuard aLock( m_aAccessLock );
...@@ -174,7 +174,7 @@ class Gate : public IGate ...@@ -174,7 +174,7 @@ class Gate : public IGate
@onerror We return false. @onerror We return false.
*//*-*****************************************************************************************************/ *//*-*****************************************************************************************************/
inline virtual sal_Bool wait( const TimeValue* pTimeOut = NULL ) SAL_OVERRIDE virtual sal_Bool wait( const TimeValue* pTimeOut = NULL ) SAL_OVERRIDE
{ {
// We must safe access to our internal member! // We must safe access to our internal member!
::osl::ClearableMutexGuard aLock( m_aAccessLock ); ::osl::ClearableMutexGuard aLock( m_aAccessLock );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment