more 64 bit correctness fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -938,7 +938,7 @@ void wxListCtrl::SetItemText(long item, const wxString& str)
|
||||
}
|
||||
|
||||
// Gets the item data
|
||||
long wxListCtrl::GetItemData(long item) const
|
||||
wxUIntPtr wxListCtrl::GetItemData(long item) const
|
||||
{
|
||||
wxListItem info;
|
||||
|
||||
@@ -1375,7 +1375,7 @@ long wxListCtrl::FindItem(long start, const wxString& str, bool partial)
|
||||
// NOTE : Lindsay Mathieson - 14-July-2002
|
||||
// No longer use ListView_FindItem as the data attribute is now stored
|
||||
// in a wxListItemInternalData structure refernced by the actual lParam
|
||||
long wxListCtrl::FindItem(long start, long data)
|
||||
long wxListCtrl::FindItem(long start, wxUIntPtr data)
|
||||
{
|
||||
long idx = start + 1;
|
||||
long count = GetItemCount();
|
||||
|
Reference in New Issue
Block a user