From 9bc0aaae7211ca1771222d4c381861ce5943b663 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Tue, 13 Jan 2009 12:48:58 +0000 Subject: [PATCH] Avoid warning on OpenVMS system git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/mimetype.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/unix/mimetype.cpp b/src/unix/mimetype.cpp index c9d7bc93ad..0d9b2bed55 100644 --- a/src/unix/mimetype.cpp +++ b/src/unix/mimetype.cpp @@ -527,7 +527,7 @@ void wxMimeTypesManagerImpl::Initialize(int mailcapStyles, #ifdef __VMS // XDG tables are never installed on OpenVMS return; -#endif +#else // Read MIME type - extension associations LoadXDGGlobs( "/usr/share/mime/globs" ); @@ -626,6 +626,7 @@ void wxMimeTypesManagerImpl::Initialize(int mailcapStyles, } } } +#endif } // clear data so you can read another group of WM files -- 2.45.2