mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-22 14:20:35 +08:00
Replace wxOVERRIDE and wxNOEXCEPT with override and noexcept
Don't use deprecated macros in wxWidgets itself.
This commit is contained in:
@@ -149,12 +149,12 @@ public:
|
||||
// ctor(s) and dtor
|
||||
TextWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist);
|
||||
|
||||
virtual wxWindow *GetWidget() const wxOVERRIDE { return m_text; }
|
||||
virtual wxTextEntryBase *GetTextEntry() const wxOVERRIDE { return m_text; }
|
||||
virtual void RecreateWidget() wxOVERRIDE { CreateText(); }
|
||||
virtual wxWindow *GetWidget() const override { return m_text; }
|
||||
virtual wxTextEntryBase *GetTextEntry() const override { return m_text; }
|
||||
virtual void RecreateWidget() override { CreateText(); }
|
||||
|
||||
// lazy creation of the content
|
||||
virtual void CreateContent() wxOVERRIDE;
|
||||
virtual void CreateContent() override;
|
||||
|
||||
protected:
|
||||
// create an info text contorl
|
||||
|
||||
Reference in New Issue
Block a user