summaryrefslogtreecommitdiff
path: root/desktop/source/app/dispatchwatcher.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/app/dispatchwatcher.hxx')
-rw-r--r--desktop/source/app/dispatchwatcher.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/source/app/dispatchwatcher.hxx b/desktop/source/app/dispatchwatcher.hxx
index 221cac915af3..70a7fd42e679 100644
--- a/desktop/source/app/dispatchwatcher.hxx
+++ b/desktop/source/app/dispatchwatcher.hxx
@@ -22,7 +22,7 @@
#include <cppuhelper/implbase.hxx>
#include <com/sun/star/frame/XDispatchResultListener.hpp>
#include <optional>
-
+#include <atomic>
#include <vector>
namespace desktop
@@ -77,9 +77,8 @@ class DispatchWatcher : public ::cppu::WeakImplHelper< css::frame::XDispatchResu
bool executeDispatchRequests( const std::vector<DispatchRequest>& aDispatches, bool bNoTerminate );
private:
- osl::Mutex m_mutex;
- sal_Int16 m_nRequestCount;
+ std::atomic<int> m_nRequestCount;
};
}