Use wxListColumnFormat for wxListCtrl::AppendColumn() format argument.

This is safer than using just an untyped int.

Closes #15265.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-06-29 12:52:11 +00:00
parent b712cc040f
commit 0280c08726
3 changed files with 3 additions and 3 deletions

View File

@@ -324,7 +324,7 @@ public:
@since 2.9.4
*/
long AppendColumn(const wxString& heading,
int format = wxLIST_FORMAT_LEFT,
wxListColumnFormat format = wxLIST_FORMAT_LEFT,
int width = -1);
/**