X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/185d7c3ee4c6e4a9ddaf811ae38e57d68a0fdff3..3caec1bb33d0b0a937b5653c068442e7fa3029bc:/wxPython/demo/wxListCtrl.py diff --git a/wxPython/demo/wxListCtrl.py b/wxPython/demo/wxListCtrl.py index 7d915f6cf7..6f10f7d7a9 100644 --- a/wxPython/demo/wxListCtrl.py +++ b/wxPython/demo/wxListCtrl.py @@ -57,6 +57,7 @@ musicdata = { 39: ("Yes", "Rhythm Of Love", "Rock"), } +import images class TestListCtrlPanel(wxPanel): def __init__(self, parent, log): @@ -66,7 +67,7 @@ class TestListCtrlPanel(wxPanel): tID = wxNewId() self.il = wxImageList(16, 16) - bmp = wxBitmap('bitmaps/smiles.bmp', wxBITMAP_TYPE_BMP) + bmp = images.getSmilesBitmap() idx1 = self.il.AddWithColourMask(bmp, wxWHITE) self.list = wxListCtrl(self, tID,