summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 17:45:14 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 17:46:10 +0100
commit190085dd4d1bc8cdfa5573158c8986b757ac1faf (patch)
tree29097db0987c539efc1b7e846255f7cc82249e49 /framework
parenttest for ignoring negative cell margin values (diff)
downloadcore-190085dd4d1bc8cdfa5573158c8986b757ac1faf.tar.gz
core-190085dd4d1bc8cdfa5573158c8986b757ac1faf.zip
Work around MSC "'override' cannot be used with 'inline'" bug
Change-Id: I35170712b8f0c83ab35cb5ef7115a6dc434a7a4f
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/threadhelp/gate.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/inc/threadhelp/gate.hxx b/framework/inc/threadhelp/gate.hxx
index a8b87a8a1354..b4e9ab02bc2f 100644
--- a/framework/inc/threadhelp/gate.hxx
+++ b/framework/inc/threadhelp/gate.hxx
@@ -98,7 +98,7 @@ class Gate : public IGate
@onerror -
*//*-*****************************************************************************************************/
- inline virtual void open() SAL_OVERRIDE
+ virtual void open() SAL_OVERRIDE
{
// We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock );
@@ -121,7 +121,7 @@ class Gate : public IGate
@onerror -
*//*-*****************************************************************************************************/
- inline virtual void close() SAL_OVERRIDE
+ virtual void close() SAL_OVERRIDE
{
// We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock );
@@ -147,7 +147,7 @@ class Gate : public IGate
@onerror -
*//*-*****************************************************************************************************/
- inline virtual void openGap() SAL_OVERRIDE
+ virtual void openGap() SAL_OVERRIDE
{
// We must safe access to our internal member!
::osl::MutexGuard aLock( m_aAccessLock );
@@ -174,7 +174,7 @@ class Gate : public IGate
@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!
::osl::ClearableMutexGuard aLock( m_aAccessLock );