if we are on a PC, allow the dialogs to pop up.

This commit is contained in:
sspitzer%netscape.com 1999-06-14 22:26:47 +00:00
parent c7f23c6607
commit b0a4a38719

View File

@ -40,7 +40,7 @@ nsMsgDisplayMessageByID(PRInt32 msgID)
nsAutoString alertText(msg);
if (dialog)
{
#ifdef BUG_7770_IS_FIXED
#if defined(BUG_7770_FIXED) || defined(XP_PC)
rv = dialog->Alert(alertText);
#else
// will only work for single byte languages for now
@ -68,7 +68,7 @@ nsMsgDisplayMessageByString(char *msg)
nsAutoString alertText(msg);
if (dialog)
{
#ifdef BUG_7770_IS_FIXED
#if defined(BUG_7770_FIXED) || defined(XP_PC)
rv = dialog->Alert(alertText);
#else
// will only work for single byte languages for now