X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0fba44b4103530bd7904c4b5720b7568b753daec..ee5aa9d44fa75e88bce9981d7d02dea9f6d5f3c4:/src/os2/fontdlg.cpp diff --git a/src/os2/fontdlg.cpp b/src/os2/fontdlg.cpp index ca3bb8fd67..1024e1b98e 100644 --- a/src/os2/fontdlg.cpp +++ b/src/os2/fontdlg.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: fontdlg.cpp +// Name: src/os2/fontdlg.cpp // Purpose: wxFontDialog class. NOTE: you can use the generic class // if you wish, instead of implementing this. // Author: David Webster @@ -13,22 +13,22 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" +#include "wx/fontdlg.h" + #ifndef WX_PRECOMP -#include -#include "wx/defs.h" -#include "wx/utils.h" -#include "wx/dialog.h" -#include "wx/math.h" + #include + #include "wx/utils.h" + #include "wx/dialog.h" + #include "wx/math.h" + #include "wx/cmndata.h" #endif -#include "wx/fontdlg.h" #include "wx/fontutil.h" #define INCL_PM #include #include "wx/os2/private.h" -#include "wx/cmndata.h" #include #include @@ -37,10 +37,10 @@ IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog) int wxFontDialog::ShowModal() { - FONTDLG vFontDlg; - char zCurrentFont[FACESIZE]; - HWND hWndFontDlg; - FACENAMEDESC vFn; + FONTDLG vFontDlg; + char zCurrentFont[FACESIZE]; + HWND hWndFontDlg; + FACENAMEDESC vFn; memset(&vFontDlg, '\0', sizeof(FONTDLG)); zCurrentFont[0] = '\0'; @@ -98,4 +98,3 @@ int wxFontDialog::ShowModal() } return wxID_CANCEL; } // end of wxFontDialg::ShowModal -