Bug 292929 Useless conversion from char to PRUnichar following a truncation to char

r=dmose sr=dmose a=shaver
This commit is contained in:
timeless%mozdev.org 2005-06-01 16:29:10 +00:00
parent f3dd2fbc15
commit 4015f70115
2 changed files with 1 additions and 2 deletions

View File

@ -601,7 +601,6 @@ void CMapiMessage::ClearTempAttachFile( void)
BOOL CMapiMessage::CopyBinAttachToFile( LPATTACH lpAttach)
{
LPSTREAM lpStreamFile;
DWORD len;
m_ownsAttachFile = FALSE;
m_attachPath.Truncate();

View File

@ -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;