summaryrefslogtreecommitdiffstats
path: root/writerfilter/source/dmapper/BorderHandler.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 15:48:49 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 15:48:49 +0000
commit06fa030254dd625ae1de5be4a956da38eb293807 (patch)
treec3448ba1019a3875e3d5ff2877810db95dd4f249 /writerfilter/source/dmapper/BorderHandler.cxx
parentINTEGRATION: CWS xmlfilter03_DEV300 (1.13.2); FILE MERGED (diff)
downloadcore-06fa030254dd625ae1de5be4a956da38eb293807.tar.gz
core-06fa030254dd625ae1de5be4a956da38eb293807.zip
INTEGRATION: CWS xmlfilter03_DEV300 (1.6.2); FILE MERGED
2008/01/22 09:52:43 os 1.6.2.1: line distance added
Diffstat (limited to 'writerfilter/source/dmapper/BorderHandler.cxx')
-rw-r--r--writerfilter/source/dmapper/BorderHandler.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/writerfilter/source/dmapper/BorderHandler.cxx b/writerfilter/source/dmapper/BorderHandler.cxx
index 205aff736194..9fd4d968796b 100644
--- a/writerfilter/source/dmapper/BorderHandler.cxx
+++ b/writerfilter/source/dmapper/BorderHandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: BorderHandler.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: obo $ $Date: 2008-01-10 11:35:54 $
+ * last change: $Author: kz $ $Date: 2008-03-05 16:48:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -100,9 +100,9 @@ void BorderHandler::attribute(Id rName, Value & rVal)
case NS_rtf::LN_ICO: // 0x2873
m_nLineColor = nIntValue;
break;
- /* WRITERFILTERSTATUS: done: 75, planned: 0, spent: 0 */
- case NS_rtf::LN_DPTSPACE: // 0x2874
- m_nLineDistance = nIntValue;
+ /* WRITERFILTERSTATUS: done: 100, planned: 0, spent: 0 */
+ case NS_rtf::LN_DPTSPACE: // border distance in points
+ m_nLineDistance = ConversionHelper::convertTwipToMM100( nIntValue * 20 );
break;
case NS_rtf::LN_FSHADOW: // 0x2875
//if 1 then line has shadow - unsupported
@@ -113,7 +113,7 @@ void BorderHandler::attribute(Id rName, Value & rVal)
case NS_ooxml::LN_CT_Border_themeTint: break;
case NS_ooxml::LN_CT_Border_themeColor: break;
default:
- OSL_ASSERT("unknown attribute");
+ OSL_ENSURE( false, "unknown attribute");
}
}
/*-- 24.04.2007 09:06:35---------------------------------------------------