]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just fix a typo in a comment in docview event handling code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 2 Oct 2013 23:32:00 +0000 (23:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 2 Oct 2013 23:32:00 +0000 (23:32 +0000)
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

src/common/docview.cpp

index 45205f0e0076b3f126af0490fa32d98fa0a24ae5..341ec7cb2a3fd8535858d815ac21da4a841e418a 100644 (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.