Fixed some bustage I intriduced

This commit is contained in:
troy%netscape.com 1998-08-27 17:26:48 +00:00
Родитель ac754b99b7
Коммит aa775156da
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -353,7 +353,9 @@ NS_IMETHODIMP nsDeviceContextUnix :: CheckFontExistence(const nsString& aFontNam
char **fnames = nsnull;
PRInt32 namelen = aFontName.Length() + 1;
char *wildstring = (char *)PR_Malloc(namelen + 200);
PRInt32 dpi = NSToIntRound(GetTwipsToDevUnits() * 1440);
float t2d;
GetTwipsToDevUnits(t2d);
PRInt32 dpi = NSToIntRound(t2d * 1440);
Display *dpy = XtDisplay((Widget)GetNativeWidget());
int numnames = 0;
XFontStruct *fonts;