Changed NS_NOTREACHED to be NS_WARN_IF_FALSE() so as to not crash everyone. r=sfraser.

This commit is contained in:
tbogard%aol.net 1999-11-02 05:12:05 +00:00
parent f0edbb0a62
commit e04693d65a
2 changed files with 2 additions and 2 deletions

View File

@ -616,7 +616,7 @@ nsEditor::EndPlaceHolderTransaction()
}
else // but if we did make one it should be around
{
NS_NOTREACHED("should this ever happen?");
NS_WARN_IF_FALSE(PR_FALSE, "should this ever happen?");
}
}
}

View File

@ -616,7 +616,7 @@ nsEditor::EndPlaceHolderTransaction()
}
else // but if we did make one it should be around
{
NS_NOTREACHED("should this ever happen?");
NS_WARN_IF_FALSE(PR_FALSE, "should this ever happen?");
}
}
}