#---------------------------------------------------------------------------
def runTest(frame, nb, log):
- dlg = wxFontDialog(frame)
+ data = wxFontData()
+ dlg = wxFontDialog(frame, data)
if dlg.ShowModal() == wxID_OK:
data = dlg.GetFontData()
font = data.GetChosenFont()
wxFontDialog()
----------------------------
-wxFontDialog(wxWindow* parent, wxFontData* data = NULL)
+wxFontDialog(wxWindow* parent, wxFontData* data)
-Constructor. Pass a parent window, and optionally a pointer to a block of font data, which will be copied to the font dialog's font data.
+Constructor. Pass a parent window and a font data object, which will be copied to the font dialog's font data.
"""
class wxFontDialog : public wxDialog {
public:
- wxFontDialog(wxWindow* parent, wxFontData* data = NULL);
+ wxFontDialog(wxWindow* parent, wxFontData* data);
%pragma(python) addtomethod = "__init__:wx._StdDialogCallbacks(self)"