X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..2c5ef4e2cb8957f22214504471d9fd7795e31c81:/include/wx/fontdlg.h diff --git a/include/wx/fontdlg.h b/include/wx/fontdlg.h index bffb70fc21..e0eeec467c 100644 --- a/include/wx/fontdlg.h +++ b/include/wx/fontdlg.h @@ -6,7 +6,7 @@ // Created: 12.05.02 // RCS-ID: $Id$ // Copyright: (c) 1997-2002 wxWidgets team -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef _WX_FONTDLG_H_BASE_ @@ -51,7 +51,7 @@ public: { InitFontData(data); return Create(parent); } protected: - virtual bool DoCreate(wxWindow *parent) { m_parent = parent; return TRUE; } + virtual bool DoCreate(wxWindow *parent) { m_parent = parent; return true; } void InitFontData(const wxFontData *data = NULL) { if ( data ) m_fontData = *data; } @@ -65,8 +65,13 @@ protected: // platform-specific wxFontDialog implementation // ---------------------------------------------------------------------------- -#if defined(__WXUNIVERSAL__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXCOCOA__) \ - || defined(__WXWINCE__) || defined(__WXGPE__) +#if defined(__WXUNIVERSAL__) || \ + defined(__WXMOTIF__) || \ + defined(__WXMAC__) || \ + defined(__WXCOCOA__) || \ + defined(__WXWINCE__) || \ + defined(__WXGPE__) + #include "wx/generic/fontdlgg.h" #define wxFontDialog wxGenericFontDialog #elif defined(__WXMSW__)