turn off assertions until dougt fixes #22943. r=dougt

git-svn-id: svn://10.0.0.236/trunk@56699 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%netscape.com
2000-01-04 00:14:37 +00:00
parent f938691498
commit 3823830445

View File

@@ -191,7 +191,10 @@ NS_IMETHODIMP
nsEventQueueImpl::ProcessPendingEvents()
{
PRBool correctThread = PL_IsQueueOnCurrentThread(mEventQueue);
/* until dougt fixes #22943, turning this off of the mac */
#ifndef XP_MAC
NS_ASSERTION(correctThread, "attemping to process events on the wrong thread");
#endif /* XP_MAC */
if (!correctThread)
return NS_ERROR_FAILURE;
@@ -204,7 +207,10 @@ NS_IMETHODIMP
nsEventQueueImpl::EventLoop()
{
PRBool correctThread = PL_IsQueueOnCurrentThread(mEventQueue);
/* until dougt fixes #22943, turning this off of the mac */
#ifndef XP_MAC
NS_ASSERTION(correctThread, "attemping to process events on the wrong thread");
#endif /* XP_MAC */
if (!correctThread)
return NS_ERROR_FAILURE;