d355d3fe69
it's possible now to call Close() after ShowModal() dialog sample works changed wxString::First() etc to return -1 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
16 lines
360 B
C
16 lines
360 B
C
#ifndef __FONTDLGH_BASE__
|
|
#define __FONTDLGH_BASE__
|
|
|
|
#if defined(__WXMSW__)
|
|
#include "wx/msw/fontdlg.h"
|
|
#elif defined(__WXMOTIF__)
|
|
#include "wx/generic/fontdlgg.h"
|
|
#elif defined(__WXGTK__)
|
|
#include "wx/generic/fontdlgg.h"
|
|
# define wxFontDialog wxGenericFontDialog
|
|
# define classwxFontDialog classwxGenericFontDialog
|
|
#endif
|
|
|
|
#endif
|
|
// __FONTDLGH_BASE__
|