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:
Vadim Zeitlin
2009-01-25 13:10:51 +00:00
parent ec5756d6b5
commit d571cf149e

View File

@@ -828,12 +828,12 @@ protected:
// or HandleWindowEvent().
// The same holds for all other wxEvtHandler functions.
wxEvtHandler::ProcessEvent;
wxEvtHandler::ProcessThreadEvent;
wxEvtHandler::SafelyProcessEvent;
wxEvtHandler::ProcessPendingEvents;
wxEvtHandler::AddPendingEvent;
wxEvtHandler::QueueEvent;
using wxEvtHandler::ProcessEvent;
using wxEvtHandler::ProcessThreadEvent;
using wxEvtHandler::SafelyProcessEvent;
using wxEvtHandler::ProcessPendingEvents;
using wxEvtHandler::AddPendingEvent;
using wxEvtHandler::QueueEvent;
public: