corrected wording of application shutdown logic description

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-05-05 23:58:22 +00:00
parent da80ae712a
commit caddf9b410

View File

@ -110,8 +110,9 @@ dialog, using the EVT\_CLOSE macro. The event handler function might look like t
\wxheading{How do I exit the application gracefully?}
A wxWidgets application automatically exits when the designated top window, or the
last frame or dialog, is destroyed. Put any application-wide cleanup code in \helpref{wxApp::OnExit}{wxapponexit} (this
A wxWidgets application automatically exits when the last top level window
(\helpref{wxFrame}{wxframe} or \helpref{wxDialog}{wxdialog}), is destroyed. Put
any application-wide cleanup code in \helpref{wxApp::OnExit}{wxapponexit} (this
is a virtual function, not an event handler).
\wxheading{Do child windows get deleted automatically?}