diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/Library_xo.mk | 1 | ||||
-rw-r--r-- | xmloff/Package_inc.mk | 1 | ||||
-rw-r--r-- | xmloff/inc/xmloff/XMLEmbeddedObjectExportFilter.hxx | 1 | ||||
-rw-r--r-- | xmloff/inc/xmloff/formsimp.hxx | 51 | ||||
-rw-r--r-- | xmloff/source/core/XMLEmbeddedObjectExportFilter.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/draw/sdpropls.cxx | 11 | ||||
-rw-r--r-- | xmloff/source/draw/sdpropls.hxx | 7 | ||||
-rw-r--r-- | xmloff/source/draw/ximppage.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/forms/formsimp.cxx | 57 | ||||
-rw-r--r-- | xmloff/source/text/txtimp.cxx | 1 |
10 files changed, 0 insertions, 135 deletions
diff --git a/xmloff/Library_xo.mk b/xmloff/Library_xo.mk index 558b5f3b537d..a5ed58f129d5 100644 --- a/xmloff/Library_xo.mk +++ b/xmloff/Library_xo.mk @@ -171,7 +171,6 @@ $(eval $(call gb_Library_add_exception_objects,xo,\ xmloff/source/forms/formevents \ xmloff/source/forms/formlayerexport \ xmloff/source/forms/formlayerimport \ - xmloff/source/forms/formsimp \ xmloff/source/forms/gridcolumnproptranslator \ xmloff/source/forms/layerexport \ xmloff/source/forms/layerimport \ diff --git a/xmloff/Package_inc.mk b/xmloff/Package_inc.mk index b53ea7eacc6c..fc7f9218f8a3 100644 --- a/xmloff/Package_inc.mk +++ b/xmloff/Package_inc.mk @@ -75,7 +75,6 @@ $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/dllapi.h,xmloff/dllapi.h $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/families.hxx,xmloff/families.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerexport.hxx,xmloff/formlayerexport.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerimport.hxx,xmloff/formlayerimport.hxx)) -$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formsimp.hxx,xmloff/formsimp.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/i18nmap.hxx,xmloff/i18nmap.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/maptype.hxx,xmloff/maptype.hxx)) $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/nmspmap.hxx,xmloff/nmspmap.hxx)) diff --git a/xmloff/inc/xmloff/XMLEmbeddedObjectExportFilter.hxx b/xmloff/inc/xmloff/XMLEmbeddedObjectExportFilter.hxx index 2c9af8b4c400..53d332f2f4b3 100644 --- a/xmloff/inc/xmloff/XMLEmbeddedObjectExportFilter.hxx +++ b/xmloff/inc/xmloff/XMLEmbeddedObjectExportFilter.hxx @@ -45,7 +45,6 @@ class XMLEmbeddedObjectExportFilter : public ::cppu::WeakImplHelper3< ::com::sun::star::xml::sax::XExtendedDocumentHandler > xExtHandler; public: - XMLEmbeddedObjectExportFilter() throw(); XMLEmbeddedObjectExportFilter( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler > & rHandler ) throw(); virtual ~XMLEmbeddedObjectExportFilter () throw(); diff --git a/xmloff/inc/xmloff/formsimp.hxx b/xmloff/inc/xmloff/formsimp.hxx deleted file mode 100644 index 3fadb7195e51..000000000000 --- a/xmloff/inc/xmloff/formsimp.hxx +++ /dev/null @@ -1,51 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#ifndef _XMLOFF_FORMSIMP_HXX -#define _XMLOFF_FORMSIMP_HXX - -#include <xmloff/xmlictxt.hxx> - -////////////////////////////////////////////////////////////////////////////// -// presentations:animations - -class XMLFormsContext : public SvXMLImportContext -{ -public: - TYPEINFO(); - - XMLFormsContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const rtl::OUString& rLocalName); - virtual ~XMLFormsContext(); - - virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const ::rtl::OUString& rLocalName, - const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList ); -}; - -#endif // _XMLOFF_ANIMIMP_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/core/XMLEmbeddedObjectExportFilter.cxx b/xmloff/source/core/XMLEmbeddedObjectExportFilter.cxx index 00f10ecbe5a6..b2dc0650e599 100644 --- a/xmloff/source/core/XMLEmbeddedObjectExportFilter.cxx +++ b/xmloff/source/core/XMLEmbeddedObjectExportFilter.cxx @@ -34,10 +34,6 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; -XMLEmbeddedObjectExportFilter::XMLEmbeddedObjectExportFilter() throw() -{ -} - XMLEmbeddedObjectExportFilter::XMLEmbeddedObjectExportFilter( const Reference< XDocumentHandler > & rHandler ) throw() : xHandler( rHandler ), diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index 7c68585ee73f..82f5476f09e5 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -1572,17 +1572,6 @@ void XMLShapeExportPropertyMapper::handleElementItem( } } -////////////////////////////////////////////////////////////////////////////// - -XMLPagePropertySetMapper::XMLPagePropertySetMapper(const UniReference< XMLPropertyHandlerFactory >& rFactoryRef) -: XMLPropertySetMapper( aXMLSDPresPageProps, rFactoryRef ) -{ -} - -XMLPagePropertySetMapper::~XMLPagePropertySetMapper() -{ -} - // ---------------------------------------- XMLPageExportPropertyMapper::XMLPageExportPropertyMapper( const UniReference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExport ) : diff --git a/xmloff/source/draw/sdpropls.hxx b/xmloff/source/draw/sdpropls.hxx index 47187822f2b4..e85115695181 100644 --- a/xmloff/source/draw/sdpropls.hxx +++ b/xmloff/source/draw/sdpropls.hxx @@ -297,13 +297,6 @@ public: sal_uInt32 nIdx = 0 ) const; }; -class XMLPagePropertySetMapper : public XMLPropertySetMapper -{ -public: - XMLPagePropertySetMapper(const UniReference< XMLPropertyHandlerFactory >& rFactoryRef); - ~XMLPagePropertySetMapper(); -}; - class XMLPageExportPropertyMapper : public SvXMLExportPropertyMapper { private: diff --git a/xmloff/source/draw/ximppage.cxx b/xmloff/source/draw/ximppage.cxx index 79d0acc2b269..09fbb03752a7 100644 --- a/xmloff/source/draw/ximppage.cxx +++ b/xmloff/source/draw/ximppage.cxx @@ -40,7 +40,6 @@ #include "ximpshap.hxx" #include "animimp.hxx" #include "XMLStringBufferImportContext.hxx" -#include <xmloff/formsimp.hxx> #include <xmloff/xmlictxt.hxx> #include "ximpstyl.hxx" #include <xmloff/prstylei.hxx> diff --git a/xmloff/source/forms/formsimp.cxx b/xmloff/source/forms/formsimp.cxx deleted file mode 100644 index fa4f7ab7afc6..000000000000 --- a/xmloff/source/forms/formsimp.cxx +++ /dev/null @@ -1,57 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include <com/sun/star/xml/sax/XAttributeList.hpp> -#include <xmloff/xmlimp.hxx> -#include "xmloff/xmlnmspe.hxx" -#include <xmloff/nmspmap.hxx> - -#include <xmloff/formsimp.hxx> - -using ::rtl::OUString; -using ::rtl::OUStringBuffer; - - -TYPEINIT1( XMLFormsContext, SvXMLImportContext ); - -XMLFormsContext::XMLFormsContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const rtl::OUString& rLocalName ) -: SvXMLImportContext(rImport, nPrfx, rLocalName) -{ -} - -XMLFormsContext::~XMLFormsContext() -{ -} - -SvXMLImportContext * XMLFormsContext::CreateChildContext( sal_uInt16 nPrefix, const ::rtl::OUString& rLocalName, - const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList ) -{ - return GetImport().GetFormImport()->createContext( nPrefix, rLocalName, xAttrList ); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx index 7d210ca1e28f..57c0ccf668bc 100644 --- a/xmloff/source/text/txtimp.cxx +++ b/xmloff/source/text/txtimp.cxx @@ -85,7 +85,6 @@ #include "XMLAutoMarkFileContext.hxx" #include "XMLCalculationSettingsContext.hxx" -#include <xmloff/formsimp.hxx> #include "XMLNumberStylesImport.hxx" // XML import: reconstrution of assignment of paragraph style to outline levels (#i69629#) #include <com/sun/star/beans/XPropertyState.hpp> |