From 0a6ead651525cb3c7016453fde0f9d3632348aaf Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Thu, 10 Jan 2008 10:41:29 +0000 Subject: [PATCH] INTEGRATION: CWS xmlfilter02 (1.13.12); FILE MERGED 2007/11/26 14:11:52 os 1.13.12.2: default paragraph style 'Default'; numbering rules transferred from style to paragraph 2007/11/14 12:57:07 hbrinkm 1.13.12.1: namespace clean up --- writerfilter/source/dmapper/PropertyMap.hxx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/writerfilter/source/dmapper/PropertyMap.hxx b/writerfilter/source/dmapper/PropertyMap.hxx index 9f6d9e5953d3..7b91f2efa333 100644 --- a/writerfilter/source/dmapper/PropertyMap.hxx +++ b/writerfilter/source/dmapper/PropertyMap.hxx @@ -4,9 +4,9 @@ * * $RCSfile: PropertyMap.hxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: os $ $Date: 2007-06-27 08:54:25 $ + * last change: $Author: obo $ $Date: 2008-01-10 11:41:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -77,6 +77,7 @@ namespace com{namespace sun{namespace star{ } }}} +namespace writerfilter { namespace dmapper{ class DomainMapper_Impl; enum BorderPosition @@ -308,6 +309,9 @@ class StyleSheetPropertyMap : public PropertyMap bool mbCT_TblWidth_wSet; bool mbCT_TblWidth_typeSet; + + sal_Int32 mnListId; + sal_Int16 mnListLevel; public: explicit StyleSheetPropertyMap(); ~StyleSheetPropertyMap(); @@ -376,7 +380,13 @@ public: rToFill = mnCT_TcPrBase_vAlign; return mbCT_TcPrBase_vAlignSet; } + sal_Int32 GetListId() const { return mnListId; } + void SetListId(sal_Int32 nId) { mnListId = nId; } + + sal_Int16 GetListLevel() const { return mnListLevel; } + void SetListLevel(sal_Int16 nLevel) { mnListLevel = nLevel; } }; } //namespace dmapper +} //namespace writerfilter #endif