fix MSVC warning C4516 about using deprecated access declarations; use using declarations instead
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -828,12 +828,12 @@ protected:
|
|||||||
// or HandleWindowEvent().
|
// or HandleWindowEvent().
|
||||||
// The same holds for all other wxEvtHandler functions.
|
// The same holds for all other wxEvtHandler functions.
|
||||||
|
|
||||||
wxEvtHandler::ProcessEvent;
|
using wxEvtHandler::ProcessEvent;
|
||||||
wxEvtHandler::ProcessThreadEvent;
|
using wxEvtHandler::ProcessThreadEvent;
|
||||||
wxEvtHandler::SafelyProcessEvent;
|
using wxEvtHandler::SafelyProcessEvent;
|
||||||
wxEvtHandler::ProcessPendingEvents;
|
using wxEvtHandler::ProcessPendingEvents;
|
||||||
wxEvtHandler::AddPendingEvent;
|
using wxEvtHandler::AddPendingEvent;
|
||||||
wxEvtHandler::QueueEvent;
|
using wxEvtHandler::QueueEvent;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user