]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listctrl.cpp
don't write the strings to the stream one char at a time, it's *horribly* slow
[wxWidgets.git] / src / msw / listctrl.cpp
index 93187c0e42d348d5d73a6de213f4a61da58e8fb6..78c257665e9d653e8675bdc4a91ac7a4bc84ed11 100644 (file)
@@ -619,10 +619,12 @@ bool wxListCtrl::GetColumn(int col, wxListItem& item) const
             item.m_format = wxLIST_FORMAT_CENTRE;
     }
 
+#if _WIN32_IE >= 0x0300
     if ( item.m_mask & wxLIST_MASK_IMAGE )
     {
         item.m_image = lvCol.iImage;
     }
+#endif
 
     return success;
 }