summaryrefslogtreecommitdiffstats
path: root/embeddedobj/source/inc/oleembobj.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'embeddedobj/source/inc/oleembobj.hxx')
-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 )
{}