Webclient compiles with 1.3A but does not yet link.

git-svn-id: svn://10.0.0.236/trunk@136229 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2003-01-13 07:41:00 +00:00
parent 483d0a23ae
commit 76b8fbb022
15 changed files with 162 additions and 118 deletions

View File

@@ -37,6 +37,9 @@
#include "nsIDocShellTreeItem.h"
#include "nsEmbedAPI.h" // for NS_TermEmbedding
#ifdef _WIN32
#include <stdlib.h>
#endif
/*
@@ -137,7 +140,6 @@ wsDeallocateInitContextEvent::handleEvent ()
mInitContext->w = -1;
mInitContext->h = -1;
mInitContext->gtkWinPtr = nsnull;
mInitContext->searchContext = nsnull;
// make sure we aren't listening anymore. This needs to be done
// before currentDocument = nsnull
@@ -151,7 +153,7 @@ wsDeallocateInitContextEvent::handleEvent ()
if (isLastWindow) {
NS_TermEmbedding();
#ifdef _WIN32
_exit(0);
exit(0);
#endif
}
return (void *) NS_OK;