compilation fix for wxUSE_MIMETYPE == 0; wxFileType memory leak fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-04-08 11:46:42 +00:00
parent e171b40066
commit acf094a27c

View File

@ -431,12 +431,15 @@ void wxDebugReportDialog::OnOpen(wxCommandEvent& )
// try to get the command to open this kind of files ourselves
wxString command;
#if wxUSE_MIMETYPE
wxFileType *
ft = wxTheMimeTypesManager->GetFileTypeFromExtension(fn.GetExt());
if ( ft )
{
command = ft->GetOpenCommand(fn.GetFullPath());
delete ft;
}
#endif // wxUSE_MIMETYPE
// if we couldn't, ask the user
if ( command.empty() )