get rid of an unsiged warning and pull in drag.h for a flavor const on osx.

git-svn-id: svn://10.0.0.236/trunk@92509 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pinkerton%netscape.com
2001-04-17 04:00:39 +00:00
parent 6a712d0424
commit 323898afb8

View File

@@ -30,7 +30,7 @@
#include "nsMimeMapper.h"
#include "nsITransferable.h"
#include "nsString.h"
#include <Drag.h>
nsMimeMapperMac :: nsMimeMapperMac ( const char* inMappings )
: mCounter(0)
@@ -137,7 +137,7 @@ nsMimeMapperMac :: MapMacOSTypeToMimeType ( ResType inMacType, nsCAutoString & o
// we have no idea what it is. The way this was encoded means that we can use the
// lower two byts of the flavor as an index into our mapping list.
if ( inMacType & ('..MZ' << 16) ) {
short index = inMacType & 0x0000FFFF; // extract the index into our internal list
unsigned short index = inMacType & 0x0000FFFF; // extract the index into our internal list
if ( index < mMappings.size() )
outMimeStr = mMappings[index].second;
else