X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f6c54eb076d760cbb6fb15e899f15fbbd575850..e2b87f38d9092b56591728558f2cc13cac6a58af:/samples/joytest/joytest.h diff --git a/samples/joytest/joytest.h b/samples/joytest/joytest.h index 9a08f6f5e3..754179f1f3 100644 --- a/samples/joytest/joytest.h +++ b/samples/joytest/joytest.h @@ -12,8 +12,8 @@ // Define a new application class MyApp: public wxApp { - public: - bool OnInit(void); +public: + bool OnInit(); // Joystick max values int m_maxX; @@ -28,9 +28,9 @@ DECLARE_APP(MyApp) class MyCanvas: public wxScrolledWindow { - public: +public: MyCanvas(wxWindow *parent, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize); - ~MyCanvas(void); + ~MyCanvas(); void OnJoystickEvent(wxJoystickEvent& event); DECLARE_EVENT_TABLE() @@ -38,10 +38,11 @@ class MyCanvas: public wxScrolledWindow class MyFrame: public wxFrame { - public: +public: MyCanvas *canvas; - MyFrame(wxFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long style); - ~MyFrame(void); + MyFrame(wxFrame *parent, const wxString& title, + const wxPoint& pos, const wxSize& size, const long style); + ~MyFrame(); void OnActivate(wxActivateEvent& event); void OnQuit(wxCommandEvent& event); @@ -49,4 +50,3 @@ DECLARE_EVENT_TABLE() }; #define JOYTEST_QUIT 1 -#define JOYTEST_ABOUT 2