Removing nsSelectionMgr references from the build.

git-svn-id: svn://10.0.0.236/trunk@28687 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
1999-04-22 07:40:46 +00:00
parent a16789b734
commit 06af361ebb
3 changed files with 1 additions and 8 deletions

View File

@@ -67,7 +67,6 @@ EXPORTS = \
nsIMenuButton.h \
nsIImageButtonListener.h \
nsIContentConnector.h \
nsISelectionMgr.h \
nsIClipboard.h \
nsIDataFlavor.h \
nsITransferable.h \

View File

@@ -60,7 +60,6 @@ CPPSRCS= \
nsToolkit.cpp \
nsGtkEventHandler.cpp \
nsRadioButton.cpp \
nsSelectionMgr.cpp \
nsPopUpMenu.cpp \
nsWidget.cpp \
nsWindow.cpp \

View File

@@ -21,7 +21,6 @@
#include "plevent.h"
#include "nsIServiceManager.h"
#include "nsIEventQueueService.h"
#include "nsSelectionMgr.h"
#include "nsXPComCIID.h"
#include <stdlib.h>
@@ -58,7 +57,7 @@ nsAppShell::nsAppShell()
//-------------------------------------------------------------------------
nsAppShell::~nsAppShell()
{
NS_IF_RELEASE(mSelectionMgr);
}
//-------------------------------------------------------------------------
@@ -262,10 +261,6 @@ NS_METHOD nsAppShell::EventIsForModalWindow(PRBool aRealEvent, void *aEvent,
NS_METHOD
nsAppShell::GetSelectionMgr(nsISelectionMgr** aSelectionMgr)
{
*aSelectionMgr = mSelectionMgr;
NS_IF_ADDREF(mSelectionMgr);
if (!mSelectionMgr)
return NS_ERROR_NOT_INITIALIZED;
return NS_OK;
}