summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/filter/xml/xmlexpit.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/sw/source/filter/xml/xmlexpit.cxx b/sw/source/filter/xml/xmlexpit.cxx
index b7f25f9497ee..28d99828503f 100644
--- a/sw/source/filter/xml/xmlexpit.cxx
+++ b/sw/source/filter/xml/xmlexpit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlexpit.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hr $ $Date: 2003-03-27 15:42:25 $
+ * last change: $Author: obo $ $Date: 2004-01-13 11:24:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1043,11 +1043,12 @@ sal_Bool SvXMLExportItemMapper::QueryXMLValue(
break;
case RES_LAYOUT_SPLIT:
+ case RES_ROW_SPLIT:
{
- const SwFmtLayoutSplit* pLayoutSplit = PTR_CAST(SwFmtLayoutSplit, &rItem);
- DBG_ASSERT( pLayoutSplit != NULL, "Wrong Which-ID" );
+ const SfxBoolItem* pSplit = PTR_CAST(SfxBoolItem, &rItem);
+ DBG_ASSERT( pSplit != NULL, "Wrong Which-ID" );
- rUnitConverter.convertBool( aOut, pLayoutSplit->GetValue() );
+ rUnitConverter.convertBool( aOut, pSplit->GetValue() );
bOk = sal_True;
}
break;