INTEGRATION: CWS mfdouble (1.9.4); FILE MERGED
2006/12/22 13:39:51 pl 1.9.4.1: #i71046# increase precision of MetricField and friends
This commit is contained in:
parent
60a6e9a676
commit
0ba20a83d5
1 changed files with 4 additions and 4 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: vectdlg.cxx,v $
|
||||
*
|
||||
* $Revision: 1.9 $
|
||||
* $Revision: 1.10 $
|
||||
*
|
||||
* last change: $Author: kz $ $Date: 2006-12-12 17:11:34 $
|
||||
* last change: $Author: obo $ $Date: 2007-01-23 11:14:20 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -217,8 +217,8 @@ void SdVectorizeDlg::Calculate( Bitmap& rBmp, GDIMetaFile& rMtf )
|
|||
{
|
||||
const long nWidth = pRAcc->Width();
|
||||
const long nHeight = pRAcc->Height();
|
||||
const long nTileX = aMtFillHoles.GetValue();
|
||||
const long nTileY = aMtFillHoles.GetValue();
|
||||
const long nTileX = static_cast<long>(aMtFillHoles.GetValue());
|
||||
const long nTileY = static_cast<long>(aMtFillHoles.GetValue());
|
||||
const long nCountX = nWidth / nTileX;
|
||||
const long nCountY = nHeight / nTileY;
|
||||
const long nRestX = nWidth % nTileX;
|
||||
|
|
Loading…
Reference in a new issue