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
Родитель 0cb23f2ae3
Коммит 48dd594b2a
1 изменённых файлов: 2 добавлений и 2 удалений

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

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