]> git.saurik.com Git - wxWidgets.git/commitdiff
added \arg macro
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Jul 2003 20:02:56 +0000 (20:02 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Jul 2003 20:02:56 +0000 (20:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22165 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/texhelp.sty
docs/tech/tn0003.txt

index 1dd5cd5f21f0b11aa1e5ab553de7cabe3b99a39c..e275e3f94c9c19b615d880d8d419eddbb15a4d07 100644 (file)
@@ -82,6 +82,9 @@
 % C++ Parameter: a type and a name (no intervening space)
 \newcommand{\param}[2]{{\it #1}{\bf #2}}
 
+% C++ argument in the documentation text
+\newcommand{\arg}[1]{{\it #1}}
+
 % CLIPS Parameter: a type and a name (one intervening space)
 \newcommand{\cparam}[2]{{\bf #1} {\it #2}}
 
index 775929b8b8aacde196955f03d486ec5c62942871..bec2e461abb30e8ed4f07621cabedee0145d9ef3 100644 (file)
@@ -88,7 +88,7 @@ DO:
   format and running through the Windows help compiler to check
   for missing labels, etc.
 
-- quote all '_' characters with a '\' character (e.g. "MY\_PROGRAM" 
+- quote all '_' and '&' characters with a '\' character (e.g. "MY\_PROGRAM"
   unless the '_' is inside a comment or a \begin{verbatim} ...
   \end{verbatim} block
 
@@ -219,7 +219,7 @@ Creates a fresh bitmap. If the final argument is omitted, the display depth of
 the screen is used.
 
 \func{virtual bool}{Create}{\param{void*}{ data}, \param{int}{ type},
- \param{int}{ width}, \param{int}{ height}, \param{int}{ depth = -1}}
+ \param{int}{ width}, \param{int}{ height}, \param{int}{ depth = $-1$}}
 
 Creates a bitmap from the given data, which can be of arbitrary type.
 
@@ -238,7 +238,7 @@ of possible values.}
 
 \wxheading{Return value}
 
-{\tt true} if the call succeeded, {\tt false} otherwise.
+\true if the call succeeded, \false otherwise.
 
 \wxheading{Remarks}
 
@@ -270,3 +270,7 @@ Special forms:
 
 - use \destruct macro for the destructors \func{}{\destruct{MyClass}}{\void}
 
+- use \true and \false instead of true/TRUE/{\tt true}/...
+
+- use \arg{paramname} to refer to the argument inside of the function
+  description