use wxOVERRIDE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -88,11 +88,11 @@ public:
|
||||
BookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist, const char *const icon[]);
|
||||
virtual ~BookWidgetsPage();
|
||||
|
||||
virtual wxControl *GetWidget() const { return m_book; }
|
||||
virtual void RecreateWidget() { RecreateBook(); }
|
||||
virtual wxControl *GetWidget() const wxOVERRIDE { return m_book; }
|
||||
virtual void RecreateWidget() wxOVERRIDE { RecreateBook(); }
|
||||
|
||||
// lazy creation of the content
|
||||
virtual void CreateContent();
|
||||
virtual void CreateContent() wxOVERRIDE;
|
||||
|
||||
protected:
|
||||
// event handlers
|
||||
@@ -560,7 +560,7 @@ protected:
|
||||
void OnPageChanged(wxNotebookEvent& event);
|
||||
|
||||
// (re)create book
|
||||
virtual wxBookCtrlBase *CreateBook(long flags)
|
||||
virtual wxBookCtrlBase *CreateBook(long flags) wxOVERRIDE
|
||||
{
|
||||
return new wxNotebook(this, BookPage_Book,
|
||||
wxDefaultPosition, wxDefaultSize,
|
||||
@@ -641,7 +641,7 @@ protected:
|
||||
void OnPageChanged(wxListbookEvent& event);
|
||||
|
||||
// (re)create book
|
||||
virtual wxBookCtrlBase *CreateBook(long flags)
|
||||
virtual wxBookCtrlBase *CreateBook(long flags) wxOVERRIDE
|
||||
{
|
||||
return new wxListbook(this, BookPage_Book,
|
||||
wxDefaultPosition, wxDefaultSize,
|
||||
@@ -714,7 +714,7 @@ protected:
|
||||
void OnPageChanged(wxChoicebookEvent& event);
|
||||
|
||||
// (re)create book
|
||||
virtual wxBookCtrlBase *CreateBook(long flags)
|
||||
virtual wxBookCtrlBase *CreateBook(long flags) wxOVERRIDE
|
||||
{
|
||||
return new wxChoicebook(this, BookPage_Book,
|
||||
wxDefaultPosition, wxDefaultSize,
|
||||
|
Reference in New Issue
Block a user