From 0dd6c07178a27b4a2ef51061eab8091d95edd7a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 31 Oct 2003 19:51:03 +0000 Subject: [PATCH] add upper-case extensions to fallbac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filesys.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/filesys.cpp b/src/common/filesys.cpp index 6892ca1ecf..f8b2a9fa2a 100644 --- a/src/common/filesys.cpp +++ b/src/common/filesys.cpp @@ -530,31 +530,31 @@ class wxFileSystemModule : public wxModule _T(""), _T(""), _T("JPEG image (from fallback)"), - _T("jpg"), _T("jpeg"), NULL); + _T("jpg"), _T("jpeg"), _T("JPG"), _T("JPEG"), NULL); gs_FSMimeFallbacks[1] = wxFileTypeInfo(_T("image/gif"), _T(""), _T(""), _T("GIF image (from fallback)"), - _T("gif"), NULL); + _T("gif"), _T("GIF"), NULL); gs_FSMimeFallbacks[2] = wxFileTypeInfo(_T("image/png"), _T(""), _T(""), _T("PNG image (from fallback)"), - _T("png"), NULL); + _T("png"), _T("PNG"), NULL); gs_FSMimeFallbacks[3] = wxFileTypeInfo(_T("image/bmp"), _T(""), _T(""), _T("windows bitmap image (from fallback)"), - _T("bmp"), NULL); + _T("bmp"), _T("BMP"), NULL); gs_FSMimeFallbacks[4] = wxFileTypeInfo(_T("text/html"), _T(""), _T(""), _T("HTML document (from fallback)"), - _T("htm"), _T("html"), NULL); + _T("htm"), _T("html"), _T("HTM"), _T("HTML"), NULL); gs_FSMimeFallbacks[5] = // must terminate the table with this! wxFileTypeInfo(); -- 2.47.2