No changes, just fix a typo in a comment in docview event handling code.

This code is non-trivial enough without confusingly calling a view "new".

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-10-02 23:32:00 +00:00
parent 94aceba7f9
commit e90d566109

View File

@@ -2031,7 +2031,7 @@ bool wxDocChildFrameAnyBase::TryProcessEvent(wxEvent& event)
// it to its active view which must be our m_childView.
//
// Notice that we do things in this roundabout way to guarantee the correct
// event handlers call order: first the document, then the new and then the
// event handlers call order: first the document, then the view and then the
// document manager itself. And if we forwarded the event directly to the
// view, then the document manager would do it once again when we forwarded
// it to it.