Fix compile error on wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-02-21 02:17:23 +00:00
parent 328fcd84d4
commit 37f9912de4

View File

@@ -503,12 +503,10 @@ DocStr(wxFontDialog,
class wxFontDialog : public wxDialog { class wxFontDialog : public wxDialog {
public: public:
%pythonAppend wxFontDialog "self._setOORInfo(self)" %pythonAppend wxFontDialog "self._setOORInfo(self)"
%nokwargs wxFontDialog;
DocStr(wxFontDialog, DocStr(wxFontDialog,
"Constructor. Pass a parent window, and optionally the font data object to be\n" "Constructor. Pass a parent window and the FontData object to be\n"
"used to initialize the dialog controls."); "used to initialize the dialog controls.");
wxFontDialog(wxWindow* parent);
wxFontDialog(wxWindow* parent, const wxFontData& data); wxFontDialog(wxWindow* parent, const wxFontData& data);