summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/tpoption.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 10:14:06 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 10:14:06 +0000
commit60a6e9a67681de109d6085ed2b95e23e84072870 (patch)
tree1905bc096372d918eae4018d1b25dbd9a266f452 /sd/source/ui/dlg/tpoption.cxx
parentb8e40b4e4561b6115c68d5a420a67865765fc8ec (diff)
INTEGRATION: CWS mfdouble (1.22.4); FILE MERGED
2006/12/22 13:39:50 pl 1.22.4.1: #i71046# increase precision of MetricField and friends
Diffstat (limited to 'sd/source/ui/dlg/tpoption.cxx')
-rw-r--r--sd/source/ui/dlg/tpoption.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index 1760a4ebbfd6..4863c72b4025 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tpoption.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: kz $ $Date: 2006-12-12 17:10:47 $
+ * last change: $Author: obo $ $Date: 2007-01-23 11:14:06 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -429,7 +429,7 @@ void SdTpOptionsMisc::ActivatePage( const SfxItemSet& rSet )
if( eFUnit != aMtrFldOriginalWidth.GetUnit() )
{
// Metriken einstellen
- long nVal = aMtrFldOriginalWidth.Denormalize( aMtrFldOriginalWidth.GetValue( FUNIT_TWIP ) );
+ sal_Int64 nVal = aMtrFldOriginalWidth.Denormalize( aMtrFldOriginalWidth.GetValue( FUNIT_TWIP ) );
SetFieldUnit( aMtrFldOriginalWidth, eFUnit, TRUE );
aMtrFldOriginalWidth.SetValue( aMtrFldOriginalWidth.Normalize( nVal ), FUNIT_TWIP );
@@ -649,7 +649,7 @@ IMPL_LINK( SdTpOptionsMisc, SelectMetricHdl_Impl, ListBox *, EMPTYARG )
if( nPos != LISTBOX_ENTRY_NOTFOUND )
{
FieldUnit eUnit = (FieldUnit)(long)aLbMetric.GetEntryData( nPos );
- long nVal =
+ sal_Int64 nVal =
aMtrFldTabstop.Denormalize( aMtrFldTabstop.GetValue( FUNIT_TWIP ) );
SetFieldUnit( aMtrFldTabstop, eUnit );
aMtrFldTabstop.SetValue( aMtrFldTabstop.Normalize( nVal ), FUNIT_TWIP );
@@ -775,14 +775,14 @@ IMPL_LINK( SdTpOptionsMisc, ModifyScaleHdl, void *, EMPTYARG )
IMPL_LINK( SdTpOptionsMisc, ModifyOriginalScaleHdl, void *, EMPTYARG )
{
// Berechnen des Massstabs
- long nOrgW = aMtrFldOriginalWidth.GetValue();
- long nOrgH = aMtrFldOriginalHeight.GetValue();
+ long nOrgW = static_cast<long>(aMtrFldOriginalWidth.GetValue());
+ long nOrgH = static_cast<long>(aMtrFldOriginalHeight.GetValue());
if( nOrgW == 0 || nOrgH == 0 )
return( 0L );
- Fraction aFract1( nOrgW, aMtrFldInfo1.GetValue() );
- Fraction aFract2( nOrgH, aMtrFldInfo2.GetValue() );
+ Fraction aFract1( nOrgW, static_cast<long>(aMtrFldInfo1.GetValue()) );
+ Fraction aFract2( nOrgH, static_cast<long>(aMtrFldInfo2.GetValue()) );
Fraction aFract( aFract1 > aFract2 ? aFract1 : aFract2 );
long nValue;