remove extraneous commas and semicolons (patch 1537792)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-08-13 01:17:53 +00:00
parent ad6791377d
commit 004f400287
14 changed files with 16 additions and 16 deletions

View File

@@ -40,8 +40,8 @@ public:
bool OnInit(); bool OnInit();
}; };
DECLARE_APP(MyApp); DECLARE_APP(MyApp)
IMPLEMENT_APP(MyApp); IMPLEMENT_APP(MyApp)
class wxSizeReportCtrl; class wxSizeReportCtrl;

View File

@@ -146,7 +146,7 @@ BEGIN_EVENT_TABLE(CheckListBoxFrame, wxFrame)
EVT_BUTTON(Btn_Down, CheckListBoxFrame::OnButtonDown) EVT_BUTTON(Btn_Down, CheckListBoxFrame::OnButtonDown)
END_EVENT_TABLE() END_EVENT_TABLE()
IMPLEMENT_APP(CheckListBoxApp); IMPLEMENT_APP(CheckListBoxApp)
// init our app: create windows // init our app: create windows
bool CheckListBoxApp::OnInit(void) bool CheckListBoxApp::OnInit(void)

View File

@@ -34,7 +34,7 @@
WX_DECLARE_LIST(wxDateTime,wxArrayDate); WX_DECLARE_LIST(wxDateTime,wxArrayDate);
#include <wx/listimpl.cpp> #include <wx/listimpl.cpp>
WX_DEFINE_LIST(wxArrayDate); WX_DEFINE_LIST(wxArrayDate)
class MyTextModel: public wxDataViewListModel class MyTextModel: public wxDataViewListModel
{ {

View File

@@ -513,6 +513,6 @@ void ClookUpDlg::OnCommand(wxWindow& win, wxCommandEvent& WXUNUSED(event))
} }
}; // ClookUpDlg::OnCommand } // ClookUpDlg::OnCommand
// *********************************** listdb.cpp ********************************** // *********************************** listdb.cpp **********************************

View File

@@ -223,7 +223,7 @@ enum
HelpDemo_Help_GNOME, HelpDemo_Help_GNOME,
HelpDemo_Help_Netscape, HelpDemo_Help_Netscape,
// controls start here (the numbers are, of course, arbitrary) // controls start here (the numbers are, of course, arbitrary)
HelpDemo_Text = 1000, HelpDemo_Text = 1000
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -121,7 +121,7 @@ wxFSFile* MyVFS::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location)
Minimal_Forward, Minimal_Forward,
// controls start here (the numbers are, of course, arbitrary) // controls start here (the numbers are, of course, arbitrary)
Minimal_Text = 1000, Minimal_Text = 1000
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -122,7 +122,7 @@ enum
Minimal_Forward, Minimal_Forward,
// controls start here (the numbers are, of course, arbitrary) // controls start here (the numbers are, of course, arbitrary)
Minimal_Text = 1000, Minimal_Text = 1000
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -430,7 +430,7 @@ enum {
GBS_MOVE_BTN1, GBS_MOVE_BTN1,
GBS_MOVE_BTN2, GBS_MOVE_BTN2,
GBS_MAX, GBS_MAX
}; };

View File

@@ -91,7 +91,7 @@ enum
OleAuto_Test, OleAuto_Test,
// controls start here (the numbers are, of course, arbitrary) // controls start here (the numbers are, of course, arbitrary)
OleAuto_Text = 1000, OleAuto_Text = 1000
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -70,7 +70,7 @@ enum
Menu_Submenu, Menu_Sub1, Menu_Sub2, Menu_Sub3, Menu_Submenu, Menu_Sub1, Menu_Sub2, Menu_Sub3,
Menu_Toggle, Menu_About, Menu_Toggle, Menu_About,
Control_First = 1000, Control_First = 1000,
Control_Listbox, Control_Listbox2, Control_Listbox, Control_Listbox2
}; };
BEGIN_EVENT_TABLE(OwnerDrawnFrame, wxFrame) BEGIN_EVENT_TABLE(OwnerDrawnFrame, wxFrame)
@@ -83,7 +83,7 @@ BEGIN_EVENT_TABLE(OwnerDrawnFrame, wxFrame)
OwnerDrawnFrame::OnListboxDblClick) OwnerDrawnFrame::OnListboxDblClick)
END_EVENT_TABLE() END_EVENT_TABLE()
IMPLEMENT_APP(OwnerDrawnApp); IMPLEMENT_APP(OwnerDrawnApp)
// init our app: create windows // init our app: create windows
bool OwnerDrawnApp::OnInit(void) bool OwnerDrawnApp::OnInit(void)

View File

@@ -81,7 +81,7 @@ private:
enum enum
{ {
// menu items // menu items
Minimal_Quit = 1, Minimal_Quit = 1
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -233,7 +233,7 @@ enum
Menu_Delete, Menu_Delete,
Menu_Info, Menu_Info,
Ctrl_RegTree = 200, Ctrl_RegTree = 200
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -153,7 +153,7 @@ bool MyApp::OnInit()
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#include "wx/arrimpl.cpp" #include "wx/arrimpl.cpp"
WX_DEFINE_OBJARRAY(ArrayOfImages); WX_DEFINE_OBJARRAY(ArrayOfImages)
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// custom canvas control that we can draw on // custom canvas control that we can draw on

View File

@@ -90,7 +90,7 @@ private:
// IDs for the controls and the menu commands // IDs for the controls and the menu commands
enum enum
{ {
Minimal_Run = wxID_HIGHEST + 1, Minimal_Run = wxID_HIGHEST + 1
}; };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------