Kaydet (Commit) 3748a053 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Removed private fields were acutally used #ifdef WNT

Change-Id: I0c4d70884d8735eb6941bc252d0aad838c80fd38
üst 5129f99e
......@@ -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 )
{}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment