projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
return const wxString& instead of wxString from the accessor methods that allow it
[wxWidgets.git]
/
docs
/
latex
/
wx
/
tapp.tex
diff --git
a/docs/latex/wx/tapp.tex
b/docs/latex/wx/tapp.tex
index 3b33252eff1517754cf02ca02c18ce6458fa1bac..f87e1a4c8f3118cf308ff083719b50ffb9106574 100644
(file)
--- a/
docs/latex/wx/tapp.tex
+++ b/
docs/latex/wx/tapp.tex
@@
-22,7
+22,7
@@
is to explicitly delete child frames in the top-level frame's \helpref{wxCloseEv
handler.
In emergencies the \helpref{wxExit}{wxexit} function can be called to kill the
handler.
In emergencies the \helpref{wxExit}{wxexit} function can be called to kill the
-application however normally the application
s
shuts down automatically,
+application however normally the application shuts down automatically,
\helpref{see below}{wxappshutdownoverview}.
An example of defining an application follows:
\helpref{see below}{wxappshutdownoverview}.
An example of defining an application follows:
@@
-73,9
+73,9
@@
terminates when this dialog -- which is the last top level window for the
moment -- is closed.
moment -- is closed.
-Another aspect of the application shutdown is
the
\helpref{OnExit}{wxapponexit}
+Another aspect of the application shutdown is \helpref{OnExit}{wxapponexit}
which is called when the application exits but {\it before} wxWidgets cleans up
which is called when the application exits but {\it before} wxWidgets cleans up
-its internal structures. You
r should delete all wxWidgets object that your
+its internal structures. You
should delete all wxWidgets object that you
created by the time OnExit finishes. In particular, do {\bf not} destroy them
from application class' destructor!
created by the time OnExit finishes. In particular, do {\bf not} destroy them
from application class' destructor!
@@
-116,3
+116,4
@@
int MyApp::OnExit()
return 0;
}
\end{verbatim}
return 0;
}
\end{verbatim}
+