From 3748a0534edf9ee48ee002fee680e6d2f437126d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 31 Aug 2012 09:50:06 +0200 Subject: Removed private fields were acutally used #ifdef WNT Change-Id: I0c4d70884d8735eb6941bc252d0aad838c80fd38 --- embeddedobj/source/inc/oleembobj.hxx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/embeddedobj/source/inc/oleembobj.hxx b/embeddedobj/source/inc/oleembobj.hxx index 04f8d63d2297..52e03da7d7d8 100644 --- a/embeddedobj/source/inc/oleembobj.hxx +++ b/embeddedobj/source/inc/oleembobj.hxx @@ -46,6 +46,8 @@ #include #include +#include + namespace cppu { class OMultiTypeInterfaceContainerHelper; } @@ -56,6 +58,10 @@ class VerbExecutionController ::osl::Mutex m_aVerbExecutionMutex; sal_Bool m_bVerbExecutionInProgress; +#ifdef WNT + oslThreadIdentifier m_nVerbExecutionThreadIdentifier; + sal_Bool m_bChangedOnVerbExecution; +#endif sal_Bool m_bWasEverActive; sal_Int32 m_nNotificationLock; @@ -64,6 +70,10 @@ public: VerbExecutionController() : m_bVerbExecutionInProgress( sal_False ) +#ifdef WNT + , m_nVerbExecutionThreadIdentifier( 0 ) + , m_bChangedOnVerbExecution( sal_False ) +#endif , m_bWasEverActive( sal_False ) , m_nNotificationLock( 0 ) {} -- cgit