]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/listctrl.h
added support for user-defined types to wxConfig (patch 1753875)
[wxWidgets.git] / include / wx / msw / listctrl.h
index 97f61eb113eaa8372b3aa5132d3f96d3d2a8dbdf..b732827376336cf8fea454c371ae2db0a8918473 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "wx/textctrl.h"
 
-class WXDLLEXPORT wxImageList;
+class WXDLLIMPEXP_FWD_CORE wxImageList;
 
 /*
     The wxListCtrl can show lists of items in four different modes:
@@ -163,7 +163,8 @@ public:
     wxUIntPtr GetItemData(long item) const ;
 
     // Sets the item data
-    bool SetItemData(long item, long data) ;
+    bool SetItemPtrData(long item, wxUIntPtr data);
+    bool SetItemData(long item, long data) { return SetItemPtrData(item, data); }
 
     // Gets the item rectangle
     bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;