don't use fall back if we had already found the MIME type (patch 769826)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -524,11 +524,11 @@ wxMimeTypesManager::GetFileTypeFromMimeType(const wxString& mimeType)
|
|||||||
EnsureImpl();
|
EnsureImpl();
|
||||||
wxFileType *ft = m_impl->GetFileTypeFromMimeType(mimeType);
|
wxFileType *ft = m_impl->GetFileTypeFromMimeType(mimeType);
|
||||||
|
|
||||||
if ( ft ) {
|
if ( !ft ) {
|
||||||
// check the fallbacks
|
// check the fallbacks
|
||||||
//
|
//
|
||||||
// TODO linear search is potentially slow, perhaps we should use a sorted
|
// TODO linear search is potentially slow, perhaps we should use a
|
||||||
// array?
|
// sorted array?
|
||||||
size_t count = m_fallbacks.GetCount();
|
size_t count = m_fallbacks.GetCount();
|
||||||
for ( size_t n = 0; n < count; n++ ) {
|
for ( size_t n = 0; n < count; n++ ) {
|
||||||
if ( wxMimeTypesManager::IsOfType(mimeType,
|
if ( wxMimeTypesManager::IsOfType(mimeType,
|
||||||
|
Reference in New Issue
Block a user