Correct wxListCtrl::InsertColumn() documentation
In InsertColumn(long, const wxListItem&) a line was split inside a referred overloaded method signature which prevented doxygen to recognize and link the referred method. In InsertColumn(long, const wxString&, int, int) non-existing Insert(long, const wxListItem&) overload was referenced instead of InsertColumn(long, const wxListItem&). Clsoes https://github.com/wxWidgets/wxWidgets/pull/1279
This commit is contained in:
@@ -849,8 +849,8 @@ public:
|
|||||||
/**
|
/**
|
||||||
For report view mode (only), inserts a column.
|
For report view mode (only), inserts a column.
|
||||||
|
|
||||||
For more details, see SetItem(). Also see InsertColumn(long, const
|
For more details, see SetItem(). Also see InsertColumn(long, const wxString&, int, int)
|
||||||
wxString&, int, int) overload for a usually more convenient
|
overload for a usually more convenient
|
||||||
alternative to this method and the description of how the item width
|
alternative to this method and the description of how the item width
|
||||||
is interpreted by this method.
|
is interpreted by this method.
|
||||||
*/
|
*/
|
||||||
@@ -863,7 +863,7 @@ public:
|
|||||||
given position specifying its most common attributes.
|
given position specifying its most common attributes.
|
||||||
|
|
||||||
Notice that to set the image for the column you need to use
|
Notice that to set the image for the column you need to use
|
||||||
Insert(long, const wxListItem&) overload and specify ::wxLIST_MASK_IMAGE
|
InsertColumn(long, const wxListItem&) overload and specify ::wxLIST_MASK_IMAGE
|
||||||
in the item mask.
|
in the item mask.
|
||||||
|
|
||||||
@param col
|
@param col
|
||||||
|
Reference in New Issue
Block a user