summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2023-09-09 13:58:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-09-10 13:16:24 +0200
commit67e0e7f57c37162ce5a8f888094c46a8267c1cc3 (patch)
tree0632794ad2cc4bda71f30cfa6b090c0151924555 /xmloff
parentd3ad7b534774f3cbef9d400170fefedccfe70b60 (diff)
OMergedPropertySetInfo does not need to implement XAggreggation
Checked on jenkins using 'make check' and +void SAL_CALL setDelegator(css::uno::Reference<css::uno::XInterface> const &) final { assert(false); } Change-Id: I8623da7e9962df1dbb09327933fccbddd82a4562 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156773 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/forms/gridcolumnproptranslator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/forms/gridcolumnproptranslator.cxx b/xmloff/source/forms/gridcolumnproptranslator.cxx
index af52a89602b4..bd14f77ecd97 100644
--- a/xmloff/source/forms/gridcolumnproptranslator.cxx
+++ b/xmloff/source/forms/gridcolumnproptranslator.cxx
@@ -23,7 +23,7 @@
#include <com/sun/star/awt/TextAlign.hpp>
#include <com/sun/star/style/ParagraphAdjust.hpp>
#include <osl/diagnose.h>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <algorithm>
@@ -111,7 +111,7 @@ namespace xmloff
}
//= OMergedPropertySetInfo
- typedef ::cppu::WeakAggImplHelper1 < XPropertySetInfo
+ typedef ::cppu::WeakImplHelper < XPropertySetInfo
> OMergedPropertySetInfo_Base;
class OMergedPropertySetInfo : public OMergedPropertySetInfo_Base
{