]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/deprecated/proplist/proplist.cpp
Updates to MIME-types and wxFileDialog code for better
[wxWidgets.git] / contrib / samples / deprecated / proplist / proplist.cpp
index 8c04d7d35c72b13d3391d85f1c8ac56d62e47c31..dccdaf326617a21457d86b3b57c0cd3edcb0af42 100644 (file)
 #include "wx/wx.h"
 #endif
 
 #include "wx/wx.h"
 #endif
 
+#include "wx/deprecated/setup.h"
 
 #if !wxUSE_PROPSHEET
 
 #if !wxUSE_PROPSHEET
-#error Please set wxUSE_PROPSHEET to 1 in include/wx/msw/setup.h and recompile.
+#error Please set wxUSE_PROPSHEET to 1 in contrib/include/wx/deprecated/setup.h and recompile.
 #endif
 
 #include "proplist.h"
 #endif
 
 #include "proplist.h"
@@ -96,7 +97,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxString& title, const wxPoint& pos, cons
 
 // Define the behaviour for the frame closing
 // - must delete all frames except for the main one.
 
 // Define the behaviour for the frame closing
 // - must delete all frames except for the main one.
-void MyFrame::OnCloseWindow(wxCloseEvent& event)
+void MyFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
 {
     if (wxGetApp().m_childWindow)
     {
 {
     if (wxGetApp().m_childWindow)
     {
@@ -106,32 +107,32 @@ void MyFrame::OnCloseWindow(wxCloseEvent& event)
     Destroy();
 }
 
     Destroy();
 }
 
-void MyFrame::OnQuit(wxCommandEvent& event)
+void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
 {
     Close(TRUE);
 }
 
 {
     Close(TRUE);
 }
 
-void MyFrame::OnDialogList(wxCommandEvent& event)
+void MyFrame::OnDialogList(wxCommandEvent& WXUNUSED(event))
 {
     wxGetApp().PropertyListTest(TRUE);
 }
 
 {
     wxGetApp().PropertyListTest(TRUE);
 }
 
-void MyFrame::OnFrameList(wxCommandEvent& event)
+void MyFrame::OnFrameList(wxCommandEvent& WXUNUSED(event))
 {
     wxGetApp().PropertyListTest(FALSE);
 }
 
 {
     wxGetApp().PropertyListTest(FALSE);
 }
 
-void MyFrame::OnDialogForm(wxCommandEvent& event)
+void MyFrame::OnDialogForm(wxCommandEvent& WXUNUSED(event))
 {
     wxGetApp().PropertyFormTest(TRUE);
 }
 
 {
     wxGetApp().PropertyFormTest(TRUE);
 }
 
-void MyFrame::OnFrameForm(wxCommandEvent& event)
+void MyFrame::OnFrameForm(wxCommandEvent& WXUNUSED(event))
 {
     wxGetApp().PropertyFormTest(FALSE);
 }
 
 {
     wxGetApp().PropertyFormTest(FALSE);
 }
 
-void MyFrame::OnAbout(wxCommandEvent& event)
+void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 {
     (void)wxMessageBox(_T("Property Classes Demo\nAuthor: Julian Smart"), _T("About Property Classes Test"));
 }
 {
     (void)wxMessageBox(_T("Property Classes Demo\nAuthor: Julian Smart"), _T("About Property Classes Test"));
 }