]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/texcept.tex
added and documented wxKeyEvent::GetUnicodeKey(); made it work for MSW; added test...
[wxWidgets.git] / docs / latex / wx / texcept.tex
index 5b2139877f81d595384be00f75d58ba00be5852c..702a193e89c55e0c3c45803f0250b629bdffd62c 100644 (file)
@@ -1,27 +1,27 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %% Name:        texcept.tex
-%% Purpose:     C++ exceptions and wxWindows overview
+%% Purpose:     C++ exceptions and wxWidgets overview
 %% Author:      Vadim Zeitlin
 %% Modified by:
 %% Created:     17.09.03
 %% RCS-ID:      $Id$
 %% Copyright:   (c) 2003 Vadim Zeitlin
-%% License:     wxWindows license
+%% License:     wxWidgets license
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 \section{C++ exceptions overview}\label{exceptionsoverview}
 
 \subsection{Introduction}
 
-wxWindows had been started long before the exceptions were introduced in C++ so
+wxWidgets had been started long before the exceptions were introduced in C++ so
 it is not very surprizing that it is not built around using them as some more
 modern C++ libraries are. For instance, the library doesn't throw exceptions to
 signal about the errors. Moreover, up to (and including) the version 2.4 of
-wxWindows, even using the exceptions in the user code was dangerous because the
+wxWidgets, even using the exceptions in the user code was dangerous because the
 library code wasn't exception-safe and so an exception propagating through it
 could result in memory and/or resource leaks, and also not very convenient.
 
-Starting from the version 2.5.1 wxWindows becomes more exception-friendly. It
+Starting from the version 2.5.1 wxWidgets becomes more exception-friendly. It
 still doesn't use the exceptions by itself but it should be now safe to use the
 exceptions in the user code and the library tries to help you with this. Please
 note that making the library exception-safe is still work in progress.
@@ -29,7 +29,7 @@ note that making the library exception-safe is still work in progress.
 
 \subsection{Strategies for exceptions handling}
 
-There are several choice for using the exceptions in wxWindows programs. First
+There are several choice for using the exceptions in wxWidgets programs. First
 of all, you may not use them at all. As stated above, the library doesn't throw
 any exceptions by itself and so you don't have to worry about exceptions at all
 unless your own code throws them. This is, of course, the simplest solution but
@@ -46,7 +46,7 @@ add a try/catch clause around the call of the base class version. This would
 allow you to catch any exceptions generated during the execution of the main
 event loop. To deal with the exceptions which may arise during the program
 startup and/or shutdown you should insert try/catch clauses in 
-\helpref{OnInit()}{wxapponinit} and/or \helpref{OnExit()}{wxappoxexit} as well.
+\helpref{OnInit()}{wxapponinit} and/or \helpref{OnExit()}{wxapponexit} as well.
 
 Finally, you may also want to continue running even when certain exceptions
 occur. If all of your exceptions may happen only in the event handlers of a