Fix the condition to always #define wxMOTIF_NEW_FONT_HANDLING

(currently always defined to 0 for safety).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2005-08-18 00:41:18 +00:00
parent 8c624a14ad
commit b0b2263b50

View File

@ -16,8 +16,10 @@
#pragma interface "font.h"
#endif
#if __WXMOTIF20__ && !__WXLESSTIF__ && !defined(wxMOTIF_NEW_FONT_HANDLING)
#define wxMOTIF_NEW_FONT_HANDLING 0 // safe default
#if __WXMOTIF20__ && !__WXLESSTIF__
#define wxMOTIF_NEW_FONT_HANDLING 0 // safe default, change to 1 to enable
#else
#define wxMOTIF_NEW_FONT_HANDLING 0
#endif
class wxXFont;