]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/listctrl.h
silenced Watcom warning when deleting const pointer
[wxWidgets.git] / include / wx / msw / listctrl.h
index 4bb1855f5efe308dda3cbb7dcd0943012054d920..cf4bfdd64e2c454c2aea89d632c82a80ada45f37 100644 (file)
 #ifndef _WX_LISTCTRL_H_
 #define _WX_LISTCTRL_H_
 
-#if wxUSE_LISTCTRL
-
-#include "wx/control.h"
-#include "wx/event.h"
-#include "wx/hash.h"
 #include "wx/textctrl.h"
 
-
 class WXDLLEXPORT wxImageList;
 
 /*
@@ -169,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 ;
@@ -439,6 +434,4 @@ private:
     DECLARE_NO_COPY_CLASS(wxListCtrl)
 };
 
-#endif // wxUSE_LISTCTRL
-
 #endif // _WX_LISTCTRL_H_