From 063d8a571cae245cb7c41b1e1aace91d7d3cf3da Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 23 May 2006 11:16:47 +0000 Subject: [PATCH] Applied patch [ 1489638 ] Trivial bugfix - missing constructor in wxGenericFontDialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/fontdlgg.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/generic/fontdlgg.h b/include/wx/generic/fontdlgg.h index 485b99fdd3..b74be12272 100644 --- a/include/wx/generic/fontdlgg.h +++ b/include/wx/generic/fontdlgg.h @@ -48,6 +48,8 @@ class WXDLLEXPORT wxGenericFontDialog : public wxFontDialogBase { public: wxGenericFontDialog() { Init(); } + wxGenericFontDialog(wxWindow *parent) + : wxFontDialogBase(parent) { Init(); } wxGenericFontDialog(wxWindow *parent, const wxFontData& data) : wxFontDialogBase(parent, data) { Init(); } virtual ~wxGenericFontDialog(); -- 2.45.2