diff options
author | Sascha Ballach <sab@openoffice.org> | 2000-10-23 09:26:18 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2000-10-23 09:26:18 +0000 |
commit | b6ab9acd23d6826308ea98103b191c7755011f15 (patch) | |
tree | 056e7bc9921925a19af8fd0db41c910ba4c8e3b2 | |
parent | 7e77d1ec668ee53fc243fb31c1886b7d814749c6 (diff) |
default constructor added
-rw-r--r-- | xmloff/source/style/PageMasterPropMapper.cxx | 12 | ||||
-rw-r--r-- | xmloff/source/style/PageMasterPropMapper.hxx | 5 |
2 files changed, 13 insertions, 4 deletions
diff --git a/xmloff/source/style/PageMasterPropMapper.cxx b/xmloff/source/style/PageMasterPropMapper.cxx index a1f2fbd84515..df7cd39b8fde 100644 --- a/xmloff/source/style/PageMasterPropMapper.cxx +++ b/xmloff/source/style/PageMasterPropMapper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: PageMasterPropMapper.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dr $ $Date: 2000-10-23 09:57:51 $ + * last change: $Author: sab $ $Date: 2000-10-23 10:26:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,6 +66,9 @@ #ifndef _XMLOFF_PAGEMASTERSTYLEMAP_HXX #include "PageMasterStyleMap.hxx" #endif +#ifndef _XMLOFF_PAGEMASTERPROPHDLFACTORY_HXX +#include "PageMasterPropHdlFactory.hxx" +#endif #ifndef _COM_SUN_STAR_TABLE_BORDERLINE_HPP_ #include <com/sun/star/table/BorderLine.hpp> @@ -235,6 +238,11 @@ void XMLPropertyStateBuffer::ContextFilter( ::std::vector< XMLPropertyState >& r //______________________________________________________________________________ +XMLPageMasterPropSetMapper::XMLPageMasterPropSetMapper(): + XMLPropertySetMapper( aXMLPageMasterStyleMap, new XMLPageMasterPropHdlFactory()) +{ +} + XMLPageMasterPropSetMapper::XMLPageMasterPropSetMapper( const XMLPropertyMapEntry* pEntries, const UniReference< XMLPropertyHandlerFactory >& rFactory ) : diff --git a/xmloff/source/style/PageMasterPropMapper.hxx b/xmloff/source/style/PageMasterPropMapper.hxx index c828e99755b4..583ed7b3ba2e 100644 --- a/xmloff/source/style/PageMasterPropMapper.hxx +++ b/xmloff/source/style/PageMasterPropMapper.hxx @@ -2,9 +2,9 @@ * * $RCSfile: PageMasterPropMapper.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: sab $ $Date: 2000-10-20 06:14:52 $ + * last change: $Author: sab $ $Date: 2000-10-23 10:26:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -78,6 +78,7 @@ protected: ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rPropSet ) const; public: + XMLPageMasterPropSetMapper(); XMLPageMasterPropSetMapper( const XMLPropertyMapEntry* pEntries, const UniReference< XMLPropertyHandlerFactory >& rFactory ); |