Removing nsSelectionMgr from the build

git-svn-id: svn://10.0.0.236/trunk@28865 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
1999-04-23 16:50:17 +00:00
parent df2c5a654c
commit 68d8670bd7
13 changed files with 3 additions and 43 deletions

View File

@@ -32,7 +32,6 @@ nsAppShell::nsAppShell()
{
NS_INIT_REFCNT();
mDispatchListener = 0;
mSelectionMgr = 0;
mEventBufferSz = sizeof( PhEvent_t ) + 1000;
mEvent = (PhEvent_t*) malloc( mEventBufferSz );
NS_ASSERTION( mEvent, "Out of memory" );
@@ -48,10 +47,6 @@ nsAppShell::nsAppShell()
NS_METHOD nsAppShell::Create(int* argc, char ** argv)
{
// Create the selection manager
// if( !mSelectionMgr )
// NS_NewSelectionMgr( &mSelectionMgr );
return NS_OK;
}
@@ -208,7 +203,6 @@ NS_METHOD nsAppShell::Exit()
//-------------------------------------------------------------------------
nsAppShell::~nsAppShell()
{
// NS_IF_RELEASE(mSelectionMgr);
}
//-------------------------------------------------------------------------
@@ -225,9 +219,4 @@ void* nsAppShell::GetNativeData(PRUint32 aDataType)
return nsnull;
}
NS_METHOD nsAppShell::GetSelectionMgr(nsISelectionMgr** aSelectionMgr)
{
return NS_OK;
}