summaryrefslogtreecommitdiff
path: root/embeddedobj
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-31 09:50:06 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-31 09:50:06 +0200
commit3748a0534edf9ee48ee002fee680e6d2f437126d (patch)
tree5d19929c2d31e0c686697b6123376aae31c96c4c /embeddedobj
parent5129f99e7e4bf20e57c7741172168978355a7333 (diff)
Removed private fields were acutally used #ifdef WNT
Change-Id: I0c4d70884d8735eb6941bc252d0aad838c80fd38
Diffstat (limited to 'embeddedobj')
-rw-r--r--embeddedobj/source/inc/oleembobj.hxx10
1 files changed, 10 insertions, 0 deletions
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 <com/sun/star/util/XCloseListener.hpp>
#include <cppuhelper/implbase5.hxx>
+#include <osl/thread.h>
+
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 )
{}