]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | #ifndef __FONTDLGH_BASE__ |
2 | #define __FONTDLGH_BASE__ | |
3 | ||
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f | 5 | #include "wx/msw/fontdlg.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
c801d85f | 7 | #include "wx/generic/fontdlgg.h" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
c801d85f | 9 | #include "wx/generic/fontdlgg.h" |
d355d3fe RR |
10 | # define wxFontDialog wxGenericFontDialog |
11 | # define classwxFontDialog classwxGenericFontDialog | |
c801d85f KB |
12 | #endif |
13 | ||
14 | #endif | |
15 | // __FONTDLGH_BASE__ |