turn off alert code because of #7770.

This commit is contained in:
sspitzer%netscape.com 1999-06-11 22:58:46 +00:00
parent 9419f45af9
commit 5b9a8f1310

View File

@ -40,7 +40,11 @@ nsMsgDisplayMessageByID(PRInt32 msgID)
nsAutoString alertText(msg);
if (dialog)
{
#ifdef BUG_7770_IS_FIXED
rv = dialog->Alert(alertText);
#else
printf("%s",msg);
#endif
}
PR_FREEIF(msg);
@ -65,9 +69,7 @@ nsMsgDisplayMessageByString(char *msg)
#ifdef BUG_7770_IS_FIXED
rv = dialog->Alert(alertText);
#else
#ifdef DEBUG
printf("%s",msg);
#endif
#endif
}