]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/except/except.cpp
Added missing events
[wxWidgets.git] / samples / except / except.cpp
index 04a13cff974cd6e25364297bd4d22e8a4f4c6e4e..aa217e4afa294a3f19fe81d6066254e0db201e87 100644 (file)
@@ -37,7 +37,8 @@
     #include "wx/button.h"
     #include "wx/sizer.h"
 
-    #include "wx/utils.h"               // for wxMessageBox
+    #include "wx/utils.h"
+    #include "wx/msgdlg.h"
 #endif
 
 // ----------------------------------------------------------------------------
@@ -216,10 +217,10 @@ void MyApp::OnUnhandledException()
 
 // frame constructor
 MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, long style)
-       : wxFrame(NULL, -1, title, pos, size, style)
+       : wxFrame(NULL, wxID_ANY, title, pos, size, style)
 {
     // set the frame icon
-    SetIcon(wxICON(mondrian));
+    SetIcon(wxICON(sample));
 
 #if wxUSE_MENUS
     // create a menu bar
@@ -302,7 +303,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 // ============================================================================
 
 MyDialog::MyDialog(wxFrame *parent)
-        : wxDialog(parent, -1, wxString(_T("Throw exception dialog")))
+        : wxDialog(parent, wxID_ANY, wxString(_T("Throw exception dialog")))
 {
     wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);