Fixed a little demo problem
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -75,8 +75,12 @@ class MimeTypesTestPanel(wxPanel):
|
||||
self.GetExtensionsTxt().SetValue(str(ft.GetExtensions()))
|
||||
self.GetDescriptionTxt().SetValue(str(ft.GetDescription()))
|
||||
|
||||
ext = ft.GetExtensions()[0]
|
||||
if ext[0] == ".": ext = ext[1:]
|
||||
extList = ft.GetExtensions()
|
||||
if extList:
|
||||
ext = extList[0]
|
||||
if ext[0] == ".": ext = ext[1:]
|
||||
else:
|
||||
ext = ""
|
||||
filename = "SPAM" + "." + ext
|
||||
mime = ft.GetMimeType() or ""
|
||||
cmd = ft.GetOpenCommand(filename, mime)
|
||||
|
Reference in New Issue
Block a user