From 74f8518b5c1927bde4ee95124bc276c9d593d278 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 21 Aug 2003 13:08:00 +0000 Subject: [PATCH] replcaeed ints with size_t to match the sources git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/notebook.tex | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/latex/wx/notebook.tex b/docs/latex/wx/notebook.tex index ce9ce5009d..8825349389 100644 --- a/docs/latex/wx/notebook.tex +++ b/docs/latex/wx/notebook.tex @@ -145,7 +145,7 @@ Deletes all pages. \membersection{wxNotebook::DeletePage}\label{wxnotebookdeletepage} -\func{bool}{DeletePage}{\param{int}{ page}} +\func{bool}{DeletePage}{\param{size\_t}{ page}} Deletes the specified page, and the associated window. @@ -163,25 +163,25 @@ Returns the associated image list. \membersection{wxNotebook::GetPage}\label{wxnotebookgetpage} -\func{wxNotebookPage*}{GetPage}{\param{int}{ page}} +\func{wxNotebookPage*}{GetPage}{\param{size\_t}{ page}} Returns the window at the given page position. \membersection{wxNotebook::GetPageCount}\label{wxnotebookgetpagecount} -\constfunc{int}{GetPageCount}{\void} +\constfunc{size\_t}{GetPageCount}{\void} Returns the number of pages in the notebook control. \membersection{wxNotebook::GetPageImage}\label{wxnotebookgetpageimage} -\constfunc{int}{GetPageImage}{\param{int }{nPage}} +\constfunc{int}{GetPageImage}{\param{size\_t }{nPage}} Returns the image index for the given page. \membersection{wxNotebook::GetPageText}\label{wxnotebookgetpagetext} -\constfunc{wxString}{GetPageText}{\param{int }{nPage}} +\constfunc{wxString}{GetPageText}{\param{size\_t }{nPage}} Returns the string for the given page. @@ -235,7 +235,7 @@ the specified position. \membersection{wxNotebook::InsertPage}\label{wxnotebookinsertpage} -\func{bool}{InsertPage}{\param{int}{ index}, \param{wxNotebookPage*}{ page}, +\func{bool}{InsertPage}{\param{size\_t}{ index}, \param{wxNotebookPage*}{ page}, \param{const wxString\&}{ text}, \param{bool}{ select = false}, \param{int}{ imageId = -1}} @@ -278,7 +278,7 @@ An event handler function, called when the page selection is changed. \membersection{wxNotebook::RemovePage}\label{wxnotebookremovepage} -\func{bool}{RemovePage}{\param{int}{ page}} +\func{bool}{RemovePage}{\param{size\_t}{ page}} Deletes the specified page, without deleting the associated window. @@ -312,20 +312,20 @@ Sets the width and height of the pages. \membersection{wxNotebook::SetPageImage}\label{wxnotebooksetpageimage} -\func{bool}{SetPageImage}{\param{int}{ page}, \param{int }{image}} +\func{bool}{SetPageImage}{\param{size\_t}{ page}, \param{int }{image}} Sets the image index for the given page. {\it image} is an index into the image list which was set with \helpref{wxNotebook::SetImageList}{wxnotebooksetimagelist}. \membersection{wxNotebook::SetPageText}\label{wxnotebooksetpagetext} -\func{bool}{SetPageText}{\param{int}{ page}, \param{const wxString\& }{text}} +\func{bool}{SetPageText}{\param{size\_t}{ page}, \param{const wxString\& }{text}} Sets the text for the given page. \membersection{wxNotebook::SetSelection}\label{wxnotebooksetselection} -\func{int}{SetSelection}{\param{int}{ page}} +\func{int}{SetSelection}{\param{size\_t}{ page}} Sets the selection for the given page, returning the previous selection. -- 2.45.2