diff options
author | Sascha Ballach <sab@openoffice.org> | 2001-02-28 16:46:26 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2001-02-28 16:46:26 +0000 |
commit | 5fbe84279f20ba53e82f5c961f537d5362932de0 (patch) | |
tree | 807b6d583965678942bb9faeaf380e8c948ee0b0 | |
parent | 008778519901ba5d1a101e8a8e479045cc83740a (diff) |
remove the unneeded constructor
-rw-r--r-- | xmloff/inc/MetaExportComponent.hxx | 21 | ||||
-rw-r--r-- | xmloff/source/meta/MetaExportComponent.cxx | 12 |
2 files changed, 4 insertions, 29 deletions
diff --git a/xmloff/inc/MetaExportComponent.hxx b/xmloff/inc/MetaExportComponent.hxx index f08eb8d9e05c..b12b2c274f7a 100644 --- a/xmloff/inc/MetaExportComponent.hxx +++ b/xmloff/inc/MetaExportComponent.hxx @@ -2,9 +2,9 @@ * * $RCSfile: MetaExportComponent.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: sab $ $Date: 2001-02-06 14:47:18 $ + * last change: $Author: sab $ $Date: 2001-02-28 17:45:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,28 +66,11 @@ #include "xmlexp.hxx" #endif -namespace rtl { class OUString; } -namespace com { namespace sun { namespace star { - namespace frame { class XModel; } - namespace lang { class XMultiServiceFactory; } - namespace uno { template<class X> class Reference; } - namespace uno { class XInterface; } - namespace uno { class Exception; } - namespace xml { namespace sax { class XDocumentHandler; } } -} } } - class XMLMetaExportComponent : public SvXMLExport { public: XMLMetaExportComponent(); - XMLMetaExportComponent( - const ::rtl::OUString& rFileName, - const ::com::sun::star::uno::Reference< - ::com::sun::star::xml::sax::XDocumentHandler > & rHandler, - const ::com::sun::star::uno::Reference< - ::com::sun::star::frame::XModel > & rModel); - ~XMLMetaExportComponent(); protected: diff --git a/xmloff/source/meta/MetaExportComponent.cxx b/xmloff/source/meta/MetaExportComponent.cxx index 1089d698c99d..5a46eb386934 100644 --- a/xmloff/source/meta/MetaExportComponent.cxx +++ b/xmloff/source/meta/MetaExportComponent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: MetaExportComponent.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: sab $ $Date: 2001-02-06 15:24:06 $ + * last change: $Author: sab $ $Date: 2001-02-28 17:46:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -123,14 +123,6 @@ XMLMetaExportComponent::XMLMetaExportComponent() : { } -XMLMetaExportComponent::XMLMetaExportComponent( - const rtl::OUString& rFileName, - const uno::Reference<xml::sax::XDocumentHandler> & rHandler, - const uno::Reference<frame::XModel> & rModel) : - SvXMLExport(rFileName, rHandler, rModel, MAP_INCH) -{ -} - XMLMetaExportComponent::~XMLMetaExportComponent() { } |