wxWindowMSW::OnInitDialog is only implemented for WinCE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2004-07-28 19:34:19 +00:00
parent d3a919bdce
commit 79099b80ad
2 changed files with 4 additions and 0 deletions

View File

@ -163,7 +163,9 @@ public:
void OnEraseBackground(wxEraseEvent& event);
void OnPaint(wxPaintEvent& event);
#ifdef __WXWINCE__
void OnInitDialog( wxInitDialogEvent& event );
#endif
public:
// For implementation purposes - sometimes decorations make the client area

View File

@ -339,7 +339,9 @@ wxCONSTRUCTOR_DUMMY(wxWindow)
BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase)
EVT_ERASE_BACKGROUND(wxWindowMSW::OnEraseBackground)
EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged)
#ifdef __WXWINCE__
EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog)
#endif
END_EVENT_TABLE()
// ===========================================================================