Switch from long to wxCoord to remove warnings.

Originally committed to SVN as r3463.
This commit is contained in:
Amar Takhar 2009-09-02 08:45:09 +00:00
parent 256671d666
commit 7237e44291
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ namespace Automation4 {
} }
} else { } else {
// If the inter-character spacing should be zero, kerning info can (and must) be used, so calculate everything in one go // If the inter-character spacing should be zero, kerning info can (and must) be used, so calculate everything in one go
long lwidth, lheight, ldescent, lextlead; wxCoord lwidth, lheight, ldescent, lextlead;
thedc.GetTextExtent(text, &lwidth, &lheight, &ldescent, &lextlead); thedc.GetTextExtent(text, &lwidth, &lheight, &ldescent, &lextlead);
double scaling = fontsize / (double)(lheight>0?lheight:1); // semi-workaround for missing OS/2 table data for scaling double scaling = fontsize / (double)(lheight>0?lheight:1); // semi-workaround for missing OS/2 table data for scaling
width = lwidth*scaling; height = lheight*scaling; descent = ldescent*scaling; extlead = lextlead*scaling; width = lwidth*scaling; height = lheight*scaling; descent = ldescent*scaling; extlead = lextlead*scaling;