diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-09-27 22:40:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-09-28 11:21:18 +0200 |
commit | b8bf1e11c55c0422a6f83d91376b93564c9c0d11 (patch) | |
tree | 95794d5fda864109ff45b530da489b3f899efca9 /package | |
parent | e70069fb72d52c20b28166708a217bf674dcb61b (diff) |
struct OHierarchyElement_Impl was apparently meant to be a class
Change-Id: Id95a70b38fae40a83f21df56f13b48b2dd0f7001
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103526
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/ohierarchyholder.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/source/xstor/ohierarchyholder.hxx b/package/source/xstor/ohierarchyholder.hxx index 97637c1a9ab0..e124d545d9a2 100644 --- a/package/source/xstor/ohierarchyholder.hxx +++ b/package/source/xstor/ohierarchyholder.hxx @@ -33,7 +33,7 @@ #include <unordered_map> #include <vector> -struct OHierarchyElement_Impl; +class OHierarchyElement_Impl; typedef std::unordered_map< OUString, ::rtl::Reference< OHierarchyElement_Impl > > OHierarchyElementList_Impl; @@ -41,7 +41,7 @@ typedef std::unordered_map< OUString, typedef ::std::vector< css::uno::WeakReference< css::embed::XExtendedStorageStream > > OWeakStorRefVector_Impl; -struct OHierarchyElement_Impl : public cppu::WeakImplHelper< css::embed::XTransactionListener > +class OHierarchyElement_Impl : public cppu::WeakImplHelper< css::embed::XTransactionListener > { ::osl::Mutex m_aMutex; |