X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03647350fc7cd141953c72e0284e928847d30f44..ebefc86eae4e1f8f9c6efa04234bee363aa58b69:/src/unix/mimetype.cpp diff --git a/src/unix/mimetype.cpp b/src/unix/mimetype.cpp index 05426d667a..51209e7f67 100644 --- a/src/unix/mimetype.cpp +++ b/src/unix/mimetype.cpp @@ -507,14 +507,19 @@ void wxMimeTypesManagerImpl::InitIfNeeded() // set the flag first to prevent recursion m_initialized = true; - wxString wm = wxTheApp->GetTraits()->GetDesktopEnvironment(); + int mailcapStyles = wxMAILCAP_ALL; + if ( wxAppTraits * const traits = wxApp::GetTraitsIfExists() ) + { + wxString wm = traits->GetDesktopEnvironment(); - if (wm == wxT("KDE")) - Initialize( wxMAILCAP_KDE ); - else if (wm == wxT("GNOME")) - Initialize( wxMAILCAP_GNOME ); - else - Initialize(); + if ( wm == "KDE" ) + mailcapStyles = wxMAILCAP_KDE; + else if ( wm == "GNOME" ) + mailcapStyles = wxMAILCAP_GNOME; + //else: unknown, use the default + } + + Initialize(mailcapStyles); } } @@ -719,7 +724,7 @@ int wxMimeTypesManagerImpl::AddToMimeData(const wxString& strType, if ( nIndex == wxNOT_FOUND ) { // We put MIME types containing "application" at the end, so that - // if the MIME type for the extention "htm" is searched for, it will + // if the MIME type for the extension "htm" is searched for, it will // rather find "text/html" than "application/x-mozilla-bookmarks". if (mimeType.Find( "application" ) == 0) {