]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listctrl.cpp
Get the stock label when stock ID is used with empty label in Create()
[wxWidgets.git] / src / msw / listctrl.cpp
index 9d2fc92173833fe96d31e4d8ffa633eb4d9ef33a..03215598d11e5b5bebfa5483ff2c8c303fa92789 100644 (file)
@@ -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();