diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-23 10:13:40 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-23 10:13:40 +0000 |
commit | 114f56463cab0bdf3d4343ad19db4ad8fc3badc6 (patch) | |
tree | 0e7112fb792180f01da3cd4006b66d96f204be1e /sd/source/ui/dlg/copydlg.cxx | |
parent | 3d0a4459e5e10375305ea4ae5a4715a43532e30c (diff) |
INTEGRATION: CWS mfdouble (1.11.4); FILE MERGED
2006/12/22 13:39:50 pl 1.11.4.1: #i71046# increase precision of MetricField and friends
Diffstat (limited to 'sd/source/ui/dlg/copydlg.cxx')
-rw-r--r-- | sd/source/ui/dlg/copydlg.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sd/source/ui/dlg/copydlg.cxx b/sd/source/ui/dlg/copydlg.cxx index a4e7dc9ba..5409ef170 100644 --- a/sd/source/ui/dlg/copydlg.cxx +++ b/sd/source/ui/dlg/copydlg.cxx @@ -4,9 +4,9 @@ * * $RCSfile: copydlg.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: kz $ $Date: 2006-12-12 16:59:34 $ + * last change: $Author: obo $ $Date: 2007-01-23 11:13:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -160,22 +160,22 @@ CopyDlg::~CopyDlg() { String& rStr = GetExtraData(); - rStr = UniString::CreateFromInt32( maNumFldCopies.GetValue() ); + rStr = UniString::CreateFromInt64( maNumFldCopies.GetValue() ); rStr.Append( TOKEN ); - rStr += UniString::CreateFromInt32( maMtrFldMoveX.GetValue() ); + rStr += UniString::CreateFromInt64( maMtrFldMoveX.GetValue() ); rStr.Append( TOKEN ); - rStr += UniString::CreateFromInt32( maMtrFldMoveY.GetValue() ); + rStr += UniString::CreateFromInt64( maMtrFldMoveY.GetValue() ); rStr.Append( TOKEN ); - rStr += UniString::CreateFromInt32( maMtrFldAngle.GetValue() ); + rStr += UniString::CreateFromInt64( maMtrFldAngle.GetValue() ); rStr.Append( TOKEN ); - rStr += UniString::CreateFromInt32( maMtrFldWidth.GetValue() ); + rStr += UniString::CreateFromInt64( maMtrFldWidth.GetValue() ); rStr.Append( TOKEN ); - rStr += UniString::CreateFromInt32( maMtrFldHeight.GetValue() ); + rStr += UniString::CreateFromInt64( maMtrFldHeight.GetValue() ); rStr.Append( TOKEN ); rStr += UniString::CreateFromInt32( (long)maLbStartColor.GetSelectEntryColor().GetColor() ); @@ -288,7 +288,7 @@ void CopyDlg::GetAttr( SfxItemSet& rOutAttrs ) rOutAttrs.Put( SfxUInt16Item( ATTR_COPY_NUMBER, (UINT16) maNumFldCopies.GetValue() ) ); rOutAttrs.Put( SfxInt32Item( ATTR_COPY_MOVE_X, nMoveX ) ); rOutAttrs.Put( SfxInt32Item( ATTR_COPY_MOVE_Y, nMoveY ) ); - rOutAttrs.Put( SfxInt32Item( ATTR_COPY_ANGLE, maMtrFldAngle.GetValue() ) ); + rOutAttrs.Put( SfxInt32Item( ATTR_COPY_ANGLE, static_cast<INT32>(maMtrFldAngle.GetValue()) ) ); rOutAttrs.Put( SfxInt32Item( ATTR_COPY_WIDTH, nWidth ) ); rOutAttrs.Put( SfxInt32Item( ATTR_COPY_HEIGHT, nHeight ) ); |