if ( resource != NULL )
{
#if wxUSE_WX_RESOURCES
- if ( !LoadFromResource(this, resource) )
+#if 0
+ if ( !LoadFromResource(this, resource) )
{
wxFAIL_MSG(wxT("wxWizardPage LoadFromResource failed!!!!"));
}
+#endif
#endif // wxUSE_RESOURCES
}
return wxSize(m_width, m_height);
}
-void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(event))
+void wxWizard::OnCancel(wxCommandEvent& WXUNUSED(eventUnused))
{
// this function probably can never be called when we don't have an active
// page, but a small extra check won't hurt
// ask the current page first: notice that we do it before calling
// GetNext/Prev() because the data transfered from the controls of the page
// may change the value returned by these methods
- if ( m_page && !m_page->TransferDataFromWindow() )
+ if ( m_page && (!m_page->Validate() || !m_page->TransferDataFromWindow()) )
{
// the page data is incorrect, don't do anything
return;