X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ddefeb07f03c1beac0dea55617ea50f3fdbcd8b..e531b73f8910b3dcb2457bb74eb3723f2d516f5f:/docs/latex/wx/listctrl.tex diff --git a/docs/latex/wx/listctrl.tex b/docs/latex/wx/listctrl.tex index 496e78628f..ce63aa66be 100644 --- a/docs/latex/wx/listctrl.tex +++ b/docs/latex/wx/listctrl.tex @@ -474,7 +474,7 @@ this method. The first value is the item id and the second is the flags value mentioned above.} \perlnote{In wxPerl this method only takes the {\bf point} parameter - and returns a 2-element list ( item, flags ).} + and returns a 2-element list {\tt ( item, flags )}.} \membersection{wxListCtrl::InsertColumn}\label{wxlistctrlinsertcolumn} @@ -549,7 +549,7 @@ method:\par \membersection{wxListCtrl::OnGetItemAttr}\label{wxlistctrlongetitemattr} -\func{virtual wxString}{OnGetItemAttr}{\param{long }{item}} +\func{virtual wxListItemAttr *}{OnGetItemAttr}{\param{long }{item}} This function may be overloaded in the derived class for a control with {\tt wxLC\_VIRTUAL} style. It should return the attribute for the @@ -565,11 +565,13 @@ The base class version always returns {\tt NULL}. \membersection{wxListCtrl::OnGetItemImage}\label{wxlistctrlongetitemimage} -\func{virtual wxString}{OnGetItemImage}{\param{long }{item}} +\func{virtual int}{OnGetItemImage}{\param{long }{item}} -This function may be overloaded in the derived class for a control with -{\tt wxLC\_VIRTUAL} style. It should return the index of the items image in the -controls image list or $-1$ for no image. +This function must be overloaded in the derived class for a control with +{\tt wxLC\_VIRTUAL} style having an \helpref{image list}{wxlistctrlsetimagelist} +(if the control doesn't have an image list, it is not necessary to overload + it). It should return the index of the items image in the controls image list +or $-1$ for no image. The base class version always returns $-1$.