From 3a9becbd5439254a77e7dbc0278d80117a397264 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 3 Jun 2005 21:39:04 +0000 Subject: [PATCH] Use the wx.ART_NORMAL_FILE icon git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/TreeCtrl.py | 2 +- wxPython/demo/TreeListCtrl.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/demo/TreeCtrl.py b/wxPython/demo/TreeCtrl.py index f36a659521..397deb0a0a 100644 --- a/wxPython/demo/TreeCtrl.py +++ b/wxPython/demo/TreeCtrl.py @@ -40,7 +40,7 @@ class TestTreeCtrlPanel(wx.Panel): il = wx.ImageList(isz[0], isz[1]) fldridx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FOLDER, wx.ART_OTHER, isz)) fldropenidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN, wx.ART_OTHER, isz)) - fileidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_REPORT_VIEW, wx.ART_OTHER, isz)) + fileidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_NORMAL_FILE, wx.ART_OTHER, isz)) smileidx = il.Add(images.getSmilesBitmap()) self.tree.SetImageList(il) diff --git a/wxPython/demo/TreeListCtrl.py b/wxPython/demo/TreeListCtrl.py index df9c7d83dd..10bc4576e8 100644 --- a/wxPython/demo/TreeListCtrl.py +++ b/wxPython/demo/TreeListCtrl.py @@ -30,7 +30,7 @@ class TestPanel(wx.Panel): il = wx.ImageList(isz[0], isz[1]) fldridx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FOLDER, wx.ART_OTHER, isz)) fldropenidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN, wx.ART_OTHER, isz)) - fileidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_REPORT_VIEW, wx.ART_OTHER, isz)) + fileidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_NORMAL_FILE, wx.ART_OTHER, isz)) smileidx = il.Add(images.getSmilesBitmap()) self.tree.SetImageList(il) -- 2.45.2