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(). // 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: