Patch [ 584078 ] Misc samples fixes from Dimitri Schoolwerth
Addresses: printf-format warinigs indentation/style unused variable warnings used wxID_ABOUT for about menu entry removed references to "minimal sample" in other samples some other misc warinigs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user