include/editeng/svxrtf.hxx                           |    2 +-
 xmloff/source/transform/ChartPlotAreaOOoTContext.hxx |    7 +------
 2 files changed, 2 insertions(+), 7 deletions(-)

New commits:
commit 2bd24c8bc4daa1cb425b3eb38bcffef01c344489
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Fri May 16 11:02:56 2025 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Fri May 16 17:34:45 2025 +0200

    no need to subclass std::vector here
    
    Change-Id: Ief5e462f1308601bc951873537aa62a418c61893
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185397
    Tested-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/include/editeng/svxrtf.hxx b/include/editeng/svxrtf.hxx
index e7d836518ab4..08a99062ca6b 100644
--- a/include/editeng/svxrtf.hxx
+++ b/include/editeng/svxrtf.hxx
@@ -34,7 +34,7 @@
 #include <memory>
 
 class SvxRTFItemStackType;
-class SvxRTFItemStackList : public 
std::vector<std::unique_ptr<SvxRTFItemStackType>> {};
+using SvxRTFItemStackList = std::vector<std::unique_ptr<SvxRTFItemStackType>>;
 
 // Mapper-Classes for the various requirements on Document positions
 //        Swg - NodePosition is a SwContentIndex, which is used internally
diff --git a/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx 
b/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx
index 9a2eb8fe81ef..7edf099b9a07 100644
--- a/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx
+++ b/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx
@@ -26,11 +26,6 @@
 
 class XMLAxisOOoContext;
 
-class XMLAxisContextVector :
-    public ::std::vector< ::rtl::Reference< XMLAxisOOoContext > >
-{
-};
-
 class XMLChartPlotAreaOOoTContext  : public XMLProcAttrTransformerContext
 {
 public:
@@ -47,7 +42,7 @@ public:
 private:
     void AddContent( rtl::Reference<XMLAxisOOoContext> const & pContent );
 
-    XMLAxisContextVector m_aChildContexts;
+    std::vector< ::rtl::Reference< XMLAxisOOoContext > > m_aChildContexts;
 };
 
 // INCLUDED_XMLOFF_SOURCE_TRANSFORM_CHARTPLOTAREAOOOTCONTEXT_HXX

Reply via email to