Tracker compared B_APP_MIME_TYPE case sensitively - we now export the same case as

is used at other places, and all of a sudden, the "Open With..." menu in Tracker is
working now :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17666 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-05-31 13:27:34 +00:00
parent e108c13902
commit 8aebe2c4b8

View File

@ -35,8 +35,8 @@ using namespace BPrivate::Storage::Mime;
using namespace std; using namespace std;
const char *B_PEF_APP_MIME_TYPE = "application/x-be-executable"; const char *B_PEF_APP_MIME_TYPE = "application/x-be-executable";
const char *B_PE_APP_MIME_TYPE = "application/x-vnd.be-peexecutable"; const char *B_PE_APP_MIME_TYPE = "application/x-vnd.Be-peexecutable";
const char *B_ELF_APP_MIME_TYPE = "application/x-vnd.be-elfexecutable"; const char *B_ELF_APP_MIME_TYPE = "application/x-vnd.Be-elfexecutable";
const char *B_RESOURCE_MIME_TYPE = "application/x-be-resource"; const char *B_RESOURCE_MIME_TYPE = "application/x-be-resource";
const char *B_FILE_MIME_TYPE = "application/octet-stream"; const char *B_FILE_MIME_TYPE = "application/octet-stream";
// Might be defined platform depended, but ELF will certainly be the common // Might be defined platform depended, but ELF will certainly be the common