summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2000-09-27 14:16:36 +0000
committerBjörn Milcke <bm@openoffice.org>2000-09-27 14:16:36 +0000
commit59a7a57f8f3d86a09bdb98ab59860b8f2c420e02 (patch)
treed715b72c46e2ec1857d5fb19a399d28817ae6ab2 /xmloff
parent69a0bf4188f0a2bf076d4ece8af5923a61d9de0d (diff)
'renaming' XMLEnumPropertyHandler to XMLConstantsPropertyHandler
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtprhdl.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/xmloff/source/text/txtprhdl.cxx b/xmloff/source/text/txtprhdl.cxx
index 0eb3d5508096..aeae2fc3a790 100644
--- a/xmloff/source/text/txtprhdl.cxx
+++ b/xmloff/source/text/txtprhdl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtprhdl.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:07:07 $
+ * last change: $Author: bm $ $Date: 2000-09-27 15:16:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,8 +103,8 @@
#ifndef _XMLOFF_XMLANCHORTYPEPROPHDL_HXX
#include "XMLAnchorTypePropHdl.hxx"
#endif
-#ifndef _XMLOFF_XMLENUMPROPERTYHANDLER_HXX
-#include "XMLEnumPropertyHandler.hxx"
+#ifndef _XMLOFF_XMLCONSTANTSPROPERTYHANDLER_HXX
+#include "XMLConstantsPropertyHandler.hxx"
#endif
#ifndef _XMLOFF_XMLCLIPPROPERTYHANDLER_HXX
#include "XMLClipPropertyHandler.hxx"
@@ -946,34 +946,34 @@ const XMLPropertyHandler *XMLTextPropertyHandlerFactory_Impl::GetPropertyHandler
pHdl = new XMLTextColumnsPropHdl_Impl;
break;
case XML_TYPE_TEXT_HORIZONTAL_POS:
- pHdl = new XMLEnumPropertyHandler( pXML_HoriPos_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_HoriPos_Enum, 0 );
break;
case XML_TYPE_TEXT_HORIZONTAL_POS_MIRRORED:
- pHdl = new XMLEnumPropertyHandler( pXML_HoriPosMirrored_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_HoriPosMirrored_Enum, 0 );
break;
case XML_TYPE_TEXT_HORIZONTAL_REL:
- pHdl = new XMLEnumPropertyHandler( pXML_HoriRel_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_HoriRel_Enum, 0 );
break;
case XML_TYPE_TEXT_HORIZONTAL_REL_FRAME:
- pHdl = new XMLEnumPropertyHandler( pXML_HoriRelFrame_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_HoriRelFrame_Enum, 0 );
break;
case XML_TYPE_TEXT_HORIZONTAL_MIRROR:
pHdl = new XMLHoriMirrorPropHdl_Impl;
break;
case XML_TYPE_TEXT_VERTICAL_POS:
- pHdl = new XMLEnumPropertyHandler( pXML_VertPos_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_VertPos_Enum, 0 );
break;
case XML_TYPE_TEXT_VERTICAL_REL:
- pHdl = new XMLEnumPropertyHandler( pXML_VertRel_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_VertRel_Enum, 0 );
break;
case XML_TYPE_TEXT_VERTICAL_REL_PAGE:
- pHdl = new XMLEnumPropertyHandler( pXML_VertRelPage_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_VertRelPage_Enum, 0 );
break;
case XML_TYPE_TEXT_VERTICAL_REL_FRAME:
- pHdl = new XMLEnumPropertyHandler( pXML_VertRelFrame_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_VertRelFrame_Enum, 0 );
break;
case XML_TYPE_TEXT_VERTICAL_REL_AS_CHAR:
- pHdl = new XMLEnumPropertyHandler( pXML_VertRelAsChar_Enum, 0 );
+ pHdl = new XMLConstantsPropertyHandler( pXML_VertRelAsChar_Enum, 0 );
break;
case XML_TYPE_TEXT_MIRROR_VERTICAL:
pHdl = new XMLGrfMirrorPropHdl_Impl( sXML_vertical, sal_False );