diff options
Diffstat (limited to 'xmloff/source/style/PageMasterPropHdlFactory.cxx')
-rw-r--r-- | xmloff/source/style/PageMasterPropHdlFactory.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/xmloff/source/style/PageMasterPropHdlFactory.cxx b/xmloff/source/style/PageMasterPropHdlFactory.cxx index bb303cf6af99..48c8fec3d0b1 100644 --- a/xmloff/source/style/PageMasterPropHdlFactory.cxx +++ b/xmloff/source/style/PageMasterPropHdlFactory.cxx @@ -2,9 +2,9 @@ * * $RCSfile: PageMasterPropHdlFactory.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: dr $ $Date: 2000-10-23 09:53:27 $ + * last change: $Author: mib $ $Date: 2000-10-26 08:35:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,6 +75,9 @@ #ifndef _XMLOFF_NAMEDBOOLPROPERTYHANDLER_HXX #include "NamedBoolPropertyHdl.hxx" #endif +#ifndef _XMLOFF_XMLTEXTCOLUMNSPPROPERTYHANDLER_HXX +#include "XMLTextColumnsPropertyHandler.hxx" +#endif #ifndef _XMLOFF_PAGEMASTERPROPHDL_HXX_ #include "PageMasterPropHdl.hxx" @@ -155,6 +158,9 @@ const XMLPropertyHandler* XMLPageMasterPropHdlFactory::GetPropertyHandler( sal_I case XML_PM_TYPE_FIRSTPAGENUMBER: pHdl = new XMLNumberNonePropHdl( sXML_continue, 2 ); break; + case XML_TYPE_TEXT_COLUMNS: + pHdl = new XMLTextColumnsPropertyHandler; + break; } if( pHdl ) |