Use wx-prefixed macros throughout the repository.

Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
This commit is contained in:
Dimitri Schoolwerth
2015-04-23 15:49:01 +04:00
parent 2d3f617b34
commit 8f8d58d193
1697 changed files with 3543 additions and 3543 deletions

View File

@@ -931,10 +931,10 @@ void wxListLineData::ReverseHighlight( void )
// wxListHeaderWindow
//-----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow)
wxBEGIN_EVENT_TABLE(wxListHeaderWindow,wxWindow)
EVT_PAINT (wxListHeaderWindow::OnPaint)
EVT_MOUSE_EVENTS (wxListHeaderWindow::OnMouse)
END_EVENT_TABLE()
wxEND_EVENT_TABLE()
void wxListHeaderWindow::Init()
{
@@ -1388,11 +1388,11 @@ void wxListFindTimer::Notify()
// wxListTextCtrlWrapper (internal)
//-----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxListTextCtrlWrapper, wxEvtHandler)
wxBEGIN_EVENT_TABLE(wxListTextCtrlWrapper, wxEvtHandler)
EVT_CHAR (wxListTextCtrlWrapper::OnChar)
EVT_KEY_UP (wxListTextCtrlWrapper::OnKeyUp)
EVT_KILL_FOCUS (wxListTextCtrlWrapper::OnKillFocus)
END_EVENT_TABLE()
wxEND_EVENT_TABLE()
wxListTextCtrlWrapper::wxListTextCtrlWrapper(wxListMainWindow *owner,
wxTextCtrl *text,
@@ -1548,7 +1548,7 @@ void wxListTextCtrlWrapper::OnKillFocus( wxFocusEvent &event )
// wxListMainWindow
//-----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxListMainWindow, wxWindow)
wxBEGIN_EVENT_TABLE(wxListMainWindow, wxWindow)
EVT_PAINT (wxListMainWindow::OnPaint)
EVT_MOUSE_EVENTS (wxListMainWindow::OnMouse)
EVT_CHAR_HOOK (wxListMainWindow::OnCharHook)
@@ -1559,7 +1559,7 @@ BEGIN_EVENT_TABLE(wxListMainWindow, wxWindow)
EVT_KILL_FOCUS (wxListMainWindow::OnKillFocus)
EVT_SCROLLWIN (wxListMainWindow::OnScroll)
EVT_CHILD_FOCUS (wxListMainWindow::OnChildFocus)
END_EVENT_TABLE()
wxEND_EVENT_TABLE()
void wxListMainWindow::Init()
{
@@ -4537,12 +4537,12 @@ wxListMainWindow::PrefixFindItem(size_t idParent,
// wxGenericListCtrl
// -------------------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl, wxControl)
wxIMPLEMENT_DYNAMIC_CLASS(wxGenericListCtrl, wxControl);
BEGIN_EVENT_TABLE(wxGenericListCtrl,wxListCtrlBase)
wxBEGIN_EVENT_TABLE(wxGenericListCtrl,wxListCtrlBase)
EVT_SIZE(wxGenericListCtrl::OnSize)
EVT_SCROLLWIN(wxGenericListCtrl::OnScroll)
END_EVENT_TABLE()
wxEND_EVENT_TABLE()
void wxGenericListCtrl::Init()
{