[Libreoffice-commits] core.git: xmloff/source

Noel (via logerrit) logerrit at kemper.freedesktop.org
Thu Nov 5 16:26:21 UTC 2020


 xmloff/source/table/XMLTableImport.cxx |    6 ------
 1 file changed, 6 deletions(-)

New commits:
commit 46bb20e8f33e1c2769c74b8db9a2d6432f546ead
Author:     Noel <noelgrandin at gmail.com>
AuthorDate: Thu Nov 5 14:25:54 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Nov 5 17:25:17 2020 +0100

    StartElement no longer necessary here
    
    Change-Id: I9a48073ea6c931ffe90378b0c35aa1b50a573e21
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105347
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx
index b12f0d677318..126a9d04b083 100644
--- a/xmloff/source/table/XMLTableImport.cxx
+++ b/xmloff/source/table/XMLTableImport.cxx
@@ -100,8 +100,6 @@ public:
 
     virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList ) override;
 
-    virtual void StartElement( const Reference< XAttributeList >& xAttrList ) override;
-
     virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
 
     void InitColumns();
@@ -588,10 +586,6 @@ SvXMLImportContextRef XMLTableImportContext::CreateChildContext( sal_uInt16 nPre
     return nullptr;
 }
 
-void XMLTableImportContext::StartElement( const Reference< XAttributeList >& /*xAttrList*/ )
-{
-}
-
 void XMLTableImportContext::endFastElement(sal_Int32 )
 {
     for( const std::shared_ptr< MergeInfo >& xInfo : maMergeInfos )


More information about the Libreoffice-commits mailing list