summaryrefslogtreecommitdiff
path: root/svtools/source/config/itemholder2.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/config/itemholder2.hxx')
-rw-r--r--svtools/source/config/itemholder2.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/config/itemholder2.hxx b/svtools/source/config/itemholder2.hxx
index c4fd540cf2d3..3bb1a6871ba7 100644
--- a/svtools/source/config/itemholder2.hxx
+++ b/svtools/source/config/itemholder2.hxx
@@ -22,17 +22,17 @@
#include <unotools/itemholderbase.hxx>
#include <cppuhelper/implbase.hxx>
#include <com/sun/star/lang/XEventListener.hpp>
+#include <mutex>
namespace svtools {
-class ItemHolder2 : private ItemHolderMutexBase
- , public ::cppu::WeakImplHelper< css::lang::XEventListener >
+class ItemHolder2 : public ::cppu::WeakImplHelper< css::lang::XEventListener >
{
// member
private:
-
+ std::mutex m_aLock;
std::vector<TItemInfo> m_lItems;