From a8d08dbd459c1b7be9c1d82d9a78a32ae2730d86 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Wed, 20 Oct 2004 11:12:56 +0000 Subject: [PATCH] Minor manual fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/array.tex | 2 +- docs/latex/wx/arrstrng.tex | 2 +- docs/latex/wx/category.tex | 2 +- docs/latex/wx/ctrlsub.tex | 2 +- docs/latex/wx/grid.tex | 8 ++++---- docs/latex/wx/list.tex | 2 +- docs/latex/wx/menu.tex | 6 +++--- docs/latex/wx/node.tex | 2 +- docs/latex/wx/toolbar.tex | 2 +- docs/latex/wx/wxstring.tex | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/latex/wx/array.tex b/docs/latex/wx/array.tex index 9c2596a60b..a3da99e682 100644 --- a/docs/latex/wx/array.tex +++ b/docs/latex/wx/array.tex @@ -531,7 +531,7 @@ The first version of the function is for wxArray and wxObjArray, the second is for wxSortedArray only. Searches the element in the array, starting from either beginning or the end -depending on the value of {\it searchFromEnd} parameter. wxNOT\_FOUND is +depending on the value of {\it searchFromEnd} parameter. {\tt wxNOT\_FOUND} is returned if the element is not found, otherwise the index of the element is returned. diff --git a/docs/latex/wx/arrstrng.tex b/docs/latex/wx/arrstrng.tex index e79a8fcdd2..e6a7484de2 100644 --- a/docs/latex/wx/arrstrng.tex +++ b/docs/latex/wx/arrstrng.tex @@ -173,7 +173,7 @@ This function uses linear search for wxArrayString and binary search for wxSortedArrayString, but it ignores the {\it bCase} and {\it bFromEnd} parameters in the latter case. -Returns index of the first item matched or wxNOT\_FOUND if there is no match. +Returns index of the first item matched or {\tt wxNOT\_FOUND} if there is no match. \membersection{wxArrayString::Insert}\label{wxarraystringinsert} diff --git a/docs/latex/wx/category.tex b/docs/latex/wx/category.tex index 9591db27cb..1b4c257bf2 100644 --- a/docs/latex/wx/category.tex +++ b/docs/latex/wx/category.tex @@ -463,7 +463,7 @@ overview}{wxfileoverview} for more details. \twocolitem{\helpref{wxFFile}{wxffile}}{Another low-level file input/output class.} \twocolitem{\helpref{wxTempFile}{wxtempfile}}{Class to safely replace an existing file} \twocolitem{\helpref{wxTextFile}{wxtextfile}}{Class for working with text files as with arrays of lines} -\twocolitem{\helpref{wxStandardPaths}{wxstandardsaths}}{Paths for standard directories} +\twocolitem{\helpref{wxStandardPaths}{wxstandardpaths}}{Paths for standard directories} \end{twocollist} {\large {\bf Stream classes}} diff --git a/docs/latex/wx/ctrlsub.tex b/docs/latex/wx/ctrlsub.tex index caac770407..fe7dbbf5fe 100644 --- a/docs/latex/wx/ctrlsub.tex +++ b/docs/latex/wx/ctrlsub.tex @@ -308,7 +308,7 @@ pointers had been associated with the control items before. \func{void}{SetSelection}{\param{int}{ n}} Sets the selection to the given item \arg{n} or removes the selection entirely -if \arg{n} $==$ \textt{wxNOT\_FOUND}. +if \arg{n} $==$ {\tt wxNOT\_FOUND}. Note that this does not cause any command events to be emitted. diff --git a/docs/latex/wx/grid.tex b/docs/latex/wx/grid.tex index ae1575c0b8..f028d72654 100644 --- a/docs/latex/wx/grid.tex +++ b/docs/latex/wx/grid.tex @@ -1524,26 +1524,26 @@ Displays the in-place cell edit control for the current cell. \func{int}{XToCol}{\param{int }{x}} Returns the grid column that corresponds to the logical x coordinate. Returns -wxNOT\_FOUND if there is no column at the x position. +{\tt wxNOT\_FOUND} if there is no column at the x position. \membersection{wxGrid::XToEdgeOfCol}\label{wxgridxtoedgeofcol} \func{int}{XToEdgeOfCol}{\param{int }{x}} Returns the column whose right hand edge is close to the given logical x position. -If no column edge is near to this position wxNOT\_FOUND is returned. +If no column edge is near to this position {\tt wxNOT\_FOUND} is returned. \membersection{wxGrid::YToEdgeOfRow}\label{wxgridytoedgeofrow} \func{int}{YToEdgeOfRow}{\param{int }{y}} Returns the row whose bottom edge is close to the given logical y position. -If no row edge is near to this position wxNOT\_FOUND is returned. +If no row edge is near to this position {\tt wxNOT\_FOUND} is returned. \membersection{wxGrid::YToRow}\label{wxgridytorow} \func{int}{YToRow}{\param{int }{y}} Returns the grid row that corresponds to the logical y coordinate. Returns -wxNOT\_FOUND if there is no row at the y position. +{\tt wxNOT\_FOUND} if there is no row at the y position. diff --git a/docs/latex/wx/list.tex b/docs/latex/wx/list.tex index e69699fb3c..b6e9b6b463 100644 --- a/docs/latex/wx/list.tex +++ b/docs/latex/wx/list.tex @@ -248,7 +248,7 @@ Returns the last node in the list (NULL if the list is empty). \func{int}{IndexOf}{\param{T*}{ obj }} -Returns the index of {\it obj} within the list or wxNOT\_FOUND if {\it obj} +Returns the index of {\it obj} within the list or {\tt wxNOT\_FOUND} if {\it obj} is not found in the list. \membersection{wxList::Insert}\label{wxlistinsert} diff --git a/docs/latex/wx/menu.tex b/docs/latex/wx/menu.tex index b227ea8e86..21bb91bfab 100644 --- a/docs/latex/wx/menu.tex +++ b/docs/latex/wx/menu.tex @@ -339,7 +339,7 @@ parent menu (if the item was found)} \wxheading{Return value} -First form: menu item identifier, or wxNOT\_FOUND if none is found. +First form: menu item identifier, or {\tt wxNOT\_FOUND} if none is found. Second form: returns the menu item object, or NULL if it is not found. @@ -786,7 +786,7 @@ associated with a frame. \constfunc{int}{FindMenu}{\param{const wxString\& }{title}} -Returns the index of the menu with the given {\it title} or wxNOT\_FOUND if no +Returns the index of the menu with the given {\it title} or {\tt wxNOT\_FOUND} if no such menu exists in this menubar. The {\it title} parameter may specify either the menu title (with accelerator characters, i.e. {\tt "\&File"}) or just the menu label ({\tt "File"}) indifferently. @@ -805,7 +805,7 @@ Finds the menu item id for a menu name/menu item string pair. \wxheading{Return value} -The menu item identifier, or wxNOT\_FOUND if none was found. +The menu item identifier, or {\tt wxNOT\_FOUND} if none was found. \wxheading{Remarks} diff --git a/docs/latex/wx/node.tex b/docs/latex/wx/node.tex index 2a207a8a5e..53c3fe71da 100644 --- a/docs/latex/wx/node.tex +++ b/docs/latex/wx/node.tex @@ -59,5 +59,5 @@ set when the node was created). \func{int}{IndexOf}{\void} Returns the zero-based index of this node within the list. The return value -will be NOT\_FOUND if the node has not been added to a list yet. +will be {\tt wxNOT\_FOUND} if the node has not been added to a list yet. diff --git a/docs/latex/wx/toolbar.tex b/docs/latex/wx/toolbar.tex index d396eac714..512ac336b1 100644 --- a/docs/latex/wx/toolbar.tex +++ b/docs/latex/wx/toolbar.tex @@ -473,7 +473,7 @@ Returns the value used for packing tools. \constfunc{int}{GetToolPos}{\param{int }{toolId}} -Returns the tool position in the toolbar, or wxNOT\_FOUND if the tool is not found. +Returns the tool position in the toolbar, or {\tt wxNOT\_FOUND} if the tool is not found. \membersection{wxToolBar::GetToolSeparation}\label{wxtoolbargettoolseparation} diff --git a/docs/latex/wx/wxstring.tex b/docs/latex/wx/wxstring.tex index 9b637b6ae5..eaccfee1a2 100644 --- a/docs/latex/wx/wxstring.tex +++ b/docs/latex/wx/wxstring.tex @@ -731,7 +731,7 @@ If {\it fromEnd} is true, reverse search direction. If {\bf caseSensitive}, comparison is case sensitive (the default). -Returns the index of the first item matched, or wxNOT\_FOUND. +Returns the index of the first item matched, or {\tt wxNOT\_FOUND}. % TODO %\membersection{wxString::insert}\label{wxstringinsert} -- 2.45.2