X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c1dfa9eb8e1d31e514d52cb8dd7b27d03126dd33..0d91b2342a1f83b3b9db145c7210efd5d9547cc8:/src/msw/settings.cpp diff --git a/src/msw/settings.cpp b/src/msw/settings.cpp index 97c7d9f9eb..c15da355e7 100644 --- a/src/msw/settings.cpp +++ b/src/msw/settings.cpp @@ -24,13 +24,13 @@ #pragma hdrstop #endif +#include "wx/settings.h" + #ifndef WX_PRECOMP #include "wx/utils.h" #include "wx/gdicmn.h" #endif -#include "wx/settings.h" - #include "wx/msw/private.h" #ifndef SPI_GETFLATMENU @@ -228,7 +228,7 @@ wxFont wxCreateFontFromStockObject(int index) // We want Windows 2000 or later to have new fonts even MS Shell Dlg // is returned as default GUI font for compatibility int verMaj; - if(index == DEFAULT_GUI_FONT && wxGetOsVersion(&verMaj) == wxWINDOWS_NT && verMaj >= 5) + if(index == DEFAULT_GUI_FONT && wxGetOsVersion(&verMaj) == wxOS_WINDOWS_NT && verMaj >= 5) wxStrcpy(info.lf.lfFaceName, wxT("MS Shell Dlg 2")); #endif // Under MicroWindows we pass the HFONT as well @@ -310,10 +310,10 @@ static const int gs_metricsMap[] = SM_CXBORDER, SM_CYBORDER, #ifdef SM_CXCURSOR - SM_CXCURSOR, + SM_CXCURSOR, SM_CYCURSOR, #else - -1, -1, + -1, -1, #endif SM_CXDOUBLECLK, SM_CYDOUBLECLK, @@ -449,12 +449,12 @@ extern wxFont wxGetCCDefaultFont() int verMaj, verMin; switch ( wxGetOsVersion(&verMaj, &verMin) ) { - case wxWIN95: + case wxOS_WINDOWS_9X: // 4.10 is Win98 useIconFont = verMaj == 4 && verMin >= 10; break; - case wxWINDOWS_NT: + case wxOS_WINDOWS_NT: // 5.0 is Win2k useIconFont = verMaj >= 5; break;