default to native font dialog for 10.2+

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-09-26 15:59:57 +00:00
parent 884a1216ae
commit 10dc1363b5

View File

@@ -67,7 +67,8 @@ protected:
#if defined(__WXUNIVERSAL__) || \
defined(__WXMOTIF__) || \
defined(__WXMAC__) || \
defined(__WXMAC__) && !defined(__WXMAC_OSX__) || \
defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_2 ) || \
defined(__WXCOCOA__) || \
defined(__WXWINCE__) || \
defined(__WXGPE__)
@@ -80,6 +81,8 @@ protected:
#include "wx/gtk/fontdlg.h"
#elif defined(__WXPM__)
#include "wx/os2/fontdlg.h"
#elif defined(__WXMAC__)
#include "wx/mac/fontdlg.h"
#endif
// ----------------------------------------------------------------------------