]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/fontdlg.cpp
First attempt at clean-up
[wxWidgets.git] / src / msw / fontdlg.cpp
index d2c23a9d410b806d9958e65a71e2ee8d0687f3f9..6ab94108d0e951a0abede15c5142b39d7932350f 100644 (file)
@@ -31,7 +31,7 @@
 
 #include <windows.h>
 
-#ifndef __WIN32__
+#if !defined(__WIN32__) || defined(__SALFORDC__)
 #include <commdlg.h>
 #endif
 
@@ -174,7 +174,7 @@ void wxFillLogFont(LOGFONT *logFont, wxFont *font)
     // up fonts. So, set ppInch to a constant 96 dpi.
     ppInch = 96;
 
-#if FONT_SIZE_COMPATIBILITY
+#if wxFONT_SIZE_COMPATIBILITY
     // Incorrect, but compatible with old wxWindows behaviour
     int nHeight = (font->GetPointSize()*ppInch/72);
 #else