]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/recguard.tex
remove C++ comment
[wxWidgets.git] / docs / latex / wx / recguard.tex
index f7bdfa0cdffc5cc2f204bef465392a7881587946..7f1f3b4b811fadf34ed82ec0ba76201fe0dd017b 100644 (file)
 \section{\class{wxRecursionGuard}}\label{wxrecursionguard}
 
 wxRecursionGuard is a very simple class which can be used to prevent reentrancy
 \section{\class{wxRecursionGuard}}\label{wxrecursionguard}
 
 wxRecursionGuard is a very simple class which can be used to prevent reentrancy
-problems in a function. It is not thread-safe and so should be used only in the
+problems in a function. It is not thread-safe and so should be used only in
 single-threaded programs or in combination with some thread synchronization
 mechanisms.
 
 single-threaded programs or in combination with some thread synchronization
 mechanisms.
 
-wxRecursionGuard is always used together with 
+wxRecursionGuard is always used together with the 
 \helpref{wxRecursionGuardFlag}{wxrecursionguardflag} like in this example:
 \begin{verbatim}
     void Foo()
 \helpref{wxRecursionGuardFlag}{wxrecursionguardflag} like in this example:
 \begin{verbatim}
     void Foo()
@@ -35,7 +35,7 @@ wxRecursionGuard is always used together with
 
 As you can see, wxRecursionGuard simply tests the flag value and sets it to
 true if it hadn't been already set. 
 
 As you can see, wxRecursionGuard simply tests the flag value and sets it to
 true if it hadn't been already set. 
-\helpref{IsInside()}{wxrecursionguardisinside} allows to test the old flag
+\helpref{IsInside()}{wxrecursionguardisinside} allows testing the old flag
 value. The advantage of using this class compared to directly manipulating the
 flag is that the flag is always reset in the wxRecursionGuard destructor and so
 you don't risk to forget to do it even if the function returns in an unexpected
 value. The advantage of using this class compared to directly manipulating the
 flag is that the flag is always reset in the wxRecursionGuard destructor and so
 you don't risk to forget to do it even if the function returns in an unexpected
@@ -49,6 +49,10 @@ No base class
 
 <wx/recguard.h>
 
 
 <wx/recguard.h>
 
+\wxheading{Library}
+
+\helpref{wxBase}{librarieslist}
+
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
 
 \latexignore{\rtfignore{\wxheading{Members}}}