From cfd6ee41b9231aa1b389c75153f9460dc6d36f86 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Fri, 11 Mar 2016 16:45:24 +0000 Subject: [PATCH] Removed commented out code from common/mime.cpp --- source/common/mime.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/source/common/mime.cpp b/source/common/mime.cpp index dad6365..55bba94 100644 --- a/source/common/mime.cpp +++ b/source/common/mime.cpp @@ -70,34 +70,6 @@ wxString GetMIME(wxString FilenameInc){ #endif -/*#else - -#include - - const char *MIMEType; - magic_t MagicCookie = magic_open(MAGIC_MIME); - magic_setflags(MagicCookie, MAGIC_MIME_TYPE); - - if (!MagicCookie){ - - wxMessageBox(_("An error occured with the support library for getting the picture/audio type."), _("Error opening picture/audio file"), wxICON_ERROR); - return wxEmptyString; - - } - - if (magic_load(MagicCookie, NULL) != 0) { - - wxMessageBox(_("An error occured whilst determining the picture/audio type."), _("Error opening picture/audio file"), wxICON_ERROR); - return wxEmptyString; - - } - - MIMEType = magic_file(MagicCookie, FilenameInc.mb_str()); - MIMEResult = wxString::FromUTF8(MIMEType); - magic_close(MagicCookie); - -#endif*/ - return MIMEResult; } \ No newline at end of file -- 2.39.2