Fix missing or broken interface items for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69196 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-09-25 04:30:49 +00:00
parent 87d2c6f507
commit 6e350141f1
5 changed files with 41 additions and 7 deletions

View File

@@ -673,3 +673,13 @@ public:
virtual bool DoLayoutAdaptation(wxDialog* dialog) = 0;
};
class wxWindowModalDialogEvent : public wxCommandEvent
{
public:
wxWindowModalDialogEvent (wxEventType commandType = wxEVT_NULL, int id = 0);
wxDialog *GetDialog() const;
int GetReturnCode() const;
virtual wxEvent *Clone() const;
};