]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/fontutil.cpp
Better compatibility with old files when creating an image cache
[wxWidgets.git] / src / os2 / fontutil.cpp
index 088d4424f1d7931707c4aecda0a1bcddcaf0d2f6..8a27bc17295a84b48eca0cbad223d5697b08a111 100644 (file)
@@ -558,17 +558,12 @@ void wxOS2SelectMatchingFontByName(
     nIndex = 0;
     for(i = 0, nIs = 0; i < nNumFonts; i++)
     {
-        int                         nEmHeight = 0;
-        int                         nXHeight = 0;
-
         anDiff[0] = wxGpiStrcmp((wxChar*)pFM[i].szFacename, zFontFaceName);
         anDiff[1] = abs(pFM[i].lEmHeight - nPointSize);
         anDiff[2] = abs(pFM[i].usWeightClass -  usWeightClass);
         anDiff[3] = abs((pFM[i].fsSelection & 0x2f) -  fsSelection);
         if(anDiff[0] == 0)
         {
-            nEmHeight = (int)pFM[i].lEmHeight;
-            nXHeight  =(int)pFM[i].lXHeight;
             if( (nIs & 0x01) == 0)
             {
                 nIs = 1;