зеркало из https://github.com/mozilla/gecko-dev.git
get rid of an unsiged warning and pull in drag.h for a flavor const on osx.
This commit is contained in:
Родитель
5b71a852d3
Коммит
3d6fcc5c9e
|
@ -30,7 +30,7 @@
|
||||||
#include "nsMimeMapper.h"
|
#include "nsMimeMapper.h"
|
||||||
#include "nsITransferable.h"
|
#include "nsITransferable.h"
|
||||||
#include "nsString.h"
|
#include "nsString.h"
|
||||||
|
#include <Drag.h>
|
||||||
|
|
||||||
nsMimeMapperMac :: nsMimeMapperMac ( const char* inMappings )
|
nsMimeMapperMac :: nsMimeMapperMac ( const char* inMappings )
|
||||||
: mCounter(0)
|
: 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
|
// 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.
|
// lower two byts of the flavor as an index into our mapping list.
|
||||||
if ( inMacType & ('..MZ' << 16) ) {
|
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() )
|
if ( index < mMappings.size() )
|
||||||
outMimeStr = mMappings[index].second;
|
outMimeStr = mMappings[index].second;
|
||||||
else
|
else
|
||||||
|
|
Загрузка…
Ссылка в новой задаче