mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 292929 Useless conversion from char to PRUnichar following a truncation to char
r=dmose sr=dmose a=shaver
This commit is contained in:
parent
f3dd2fbc15
commit
4015f70115
@ -601,7 +601,6 @@ void CMapiMessage::ClearTempAttachFile( void)
|
||||
BOOL CMapiMessage::CopyBinAttachToFile( LPATTACH lpAttach)
|
||||
{
|
||||
LPSTREAM lpStreamFile;
|
||||
DWORD len;
|
||||
|
||||
m_ownsAttachFile = FALSE;
|
||||
m_attachPath.Truncate();
|
||||
|
@ -129,7 +129,7 @@ protected:
|
||||
BOOL AddHeader( nsCString& str, ULONG tag, const char *pPrefix);
|
||||
void AddDate( nsCString& str);
|
||||
|
||||
BOOL IsSpace( PRUnichar c) { return( m_whitespace.FindChar( c) != -1);}
|
||||
BOOL IsSpace( char c) { return( m_whitespace.FindChar( c) != -1);}
|
||||
|
||||
private:
|
||||
LPMESSAGE m_lpMsg;
|
||||
|
Loading…
Reference in New Issue
Block a user