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:
parent
d3a919bdce
commit
79099b80ad
@ -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
|
||||
|
@ -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()
|
||||
|
||||
// ===========================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user