X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/955f0add8917579c3da701330ff16848fc35ca40..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/src/msw/fontdlg.cpp?ds=inline diff --git a/src/msw/fontdlg.cpp b/src/msw/fontdlg.cpp index a48a60a2ee..51a5bd1b2b 100644 --- a/src/msw/fontdlg.cpp +++ b/src/msw/fontdlg.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "fontdlg.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -30,23 +26,17 @@ #if wxUSE_FONTDLG +#include "wx/fontdlg.h" + #ifndef WX_PRECOMP - #include "wx/defs.h" + #include "wx/msw/wrapcdlg.h" #include "wx/utils.h" #include "wx/dialog.h" + #include "wx/log.h" + #include "wx/cmndata.h" + #include "wx/math.h" #endif -#include "wx/fontdlg.h" -#include "wx/msw/private.h" - -#if !defined(__WIN32__) || defined(__WXWINCE__) -#include -#endif - -#include "wx/cmndata.h" -#include "wx/log.h" - -#include #include #include @@ -66,7 +56,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) int wxFontDialog::ShowModal() { - DWORD flags = CF_SCREENFONTS | CF_NOSIMULATIONS; + // It should be OK to always use GDI simulations + DWORD flags = CF_SCREENFONTS /* | CF_NOSIMULATIONS */ ; LOGFONT logFont;