Font dialog fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-05-21 04:19:47 +00:00
parent 559ae136c4
commit 72b4f026a2

View File

@@ -20,14 +20,14 @@
* Font dialog
*/
class WXDLLEXPORT wxFontDialog: public wxDialog
class WXDLLEXPORT wxFontDialog: public wxFontDialogBase
{
DECLARE_DYNAMIC_CLASS(wxFontDialog)
public:
wxFontDialog();
wxFontDialog(wxWindow *parent, wxFontData *data = NULL);
wxFontDialog(wxWindow *parent, const wxFontData& rData);
bool Create(wxWindow *parent, wxFontData *data = NULL);
bool Create(wxWindow *parent, const wxFontData& rData);
int ShowModal();
wxFontData& GetFontData() { return m_fontData; }