[Libreoffice-commits] .: embeddedobj/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Aug 31 00:50:37 PDT 2012


 embeddedobj/source/inc/oleembobj.hxx |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 3748a0534edf9ee48ee002fee680e6d2f437126d
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Aug 31 09:50:06 2012 +0200

    Removed private fields were acutally used #ifdef WNT
    
    Change-Id: I0c4d70884d8735eb6941bc252d0aad838c80fd38

diff --git a/embeddedobj/source/inc/oleembobj.hxx b/embeddedobj/source/inc/oleembobj.hxx
index 04f8d63..52e03da 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 )
     {}


More information about the Libreoffice-commits mailing list