]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listctrl.cpp
TRUE/FALSE source cleaning.
[wxWidgets.git] / src / msw / listctrl.cpp
index 3516a389731d71306ac12fa0f751ef48265c119a..e680736293876948a0ea51aaf2642909a5f18f78 100644 (file)
@@ -918,12 +918,19 @@ bool wxListCtrl::SetItemState(long item, long state, long stateMask)
 
 // Sets the item image
 bool wxListCtrl::SetItemImage(long item, int image, int WXUNUSED(selImage))
+{
+    return SetItemColumnImage(item, 0, image);
+}
+
+// Sets the item image
+bool wxListCtrl::SetItemColumnImage(long item, long column, int image)
 {
     wxListItem info;
 
     info.m_mask = wxLIST_MASK_IMAGE;
     info.m_image = image;
     info.m_itemId = item;
+    info.m_col = column;
 
     return SetItem(info);
 }