]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/listctrl.cpp
Fix for crash when opening empty node
[wxWidgets.git] / src / os2 / listctrl.cpp
index 648f43ed62ba0b0c2c7300e951955579ea012e55..1c8a4a0d4dfb2d85b855cd0066aa347707e73549 100644 (file)
@@ -1519,9 +1519,9 @@ long wxListCtrl::GetItemData (
 } // end of wxListCtrl::GetItemData
 
 // Sets the item data
-bool wxListCtrl::SetItemData (
+bool wxListCtrl::SetItemPtrData (
   long                              lItem
-, long                              lData
+, wxUIntPtr                         lData
 )
 {
     wxListItem                      vInfo;
@@ -1530,7 +1530,7 @@ bool wxListCtrl::SetItemData (
     vInfo.m_itemId = lItem;
     vInfo.m_data   = lData;
     return SetItem(vInfo);
-} // end of wxListCtrl::SetItemData
+} // end of wxListCtrl::SetItemPtrData
 
 // Gets the item rectangle
 bool wxListCtrl::GetItemRect ( long lItem,