remove warning. use #if 0, not comments, to take out code that isn't ready yet

This commit is contained in:
sspitzer%netscape.com 1999-05-04 04:20:33 +00:00
Родитель 7075135145
Коммит 755963ae26
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -1366,7 +1366,7 @@ nsMsgCompose::GetUrlDone(PrintSetup* /*pptr*/)
: 0));
/*JFD
if (XP_Stat(m_print->filename, &stat, xpTemporary) == 0) */{
if (XP_Stat(m_print->filename, &stat, xpTemporary) == 0) */ {
m_quotedText = (char*) PR_Malloc(stat.st_size + 1 + extra);
/* Insert two line break at the begining of the quoted text */

Просмотреть файл

@ -2634,8 +2634,10 @@ int nsMsgSendMimeDeliveryState::GatherMimeAttachments ()
if (!PL_strcasecmp(m_attachment1_encoding, ENCODING_QUOTED_PRINTABLE)) {
m_attachment1_encoder_data =
MIME_QPEncoderInit(mime_encoder_output_fn, this);
#if 0
if (!m_attachment1_encoder_data)
;//JFD goto FAILMEM;
goto FAILMEM;
#endif
}
// ### mwelch