summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmlexpit.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-13 10:24:44 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-13 10:24:44 +0000
commitfb0612ca2d3b84c466aadf29afd1ec7198a47e70 (patch)
tree150ae4a047751689374c2a28c8daadaea79e2d01 /sw/source/filter/xml/xmlexpit.cxx
parent3fe2187724a4136ab76e6717bed5ba32c30bfe1b (diff)
INTEGRATION: CWS cellbreak (1.6.188); FILE MERGED
2003/11/20 13:30:29 fme 1.6.188.1: #i2109# Feature - Split table rows - import and export of the new item
Diffstat (limited to 'sw/source/filter/xml/xmlexpit.cxx')
-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;