summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 10:35:21 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 10:35:21 +0000
commit9e8055ecf3e4d9ff071f3d45a0fa044ce0e558ad (patch)
tree782fa8b9ca4e5bf516a9a266bea4c13e1dffbeee /svx
parente1700f33fdf660e8eb76ecee4ee432d0f185d2bb (diff)
INTEGRATION: CWS mfdouble (1.14.138); FILE MERGED
2006/12/14 19:15:49 pl 1.14.138.1: #i71046# increase precision of MetricField and friends
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/measure.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/measure.cxx b/svx/source/dialog/measure.cxx
index 4140bab11417..db86e292051a 100644
--- a/svx/source/dialog/measure.cxx
+++ b/svx/source/dialog/measure.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: measure.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 12:18:48 $
+ * last change: $Author: obo $ $Date: 2007-01-23 11:35:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -510,7 +510,7 @@ BOOL SvxMeasurePage::FillItemSet( SfxItemSet& rAttrs)
if( aMtrFldDecimalPlaces.GetText() != aMtrFldDecimalPlaces.GetSavedValue() )
{
- nValue = aMtrFldDecimalPlaces.GetValue();
+ nValue = static_cast<INT32>(aMtrFldDecimalPlaces.GetValue());
rAttrs.Put(
SdrMeasureDecimalPlacesItem(
sal::static_int_cast< INT16 >( nValue ) ) );