Removing nsSelectionMgr references from the build.

This commit is contained in:
mcafee%netscape.com 1999-04-22 07:40:46 +00:00
Родитель 91d0be4809
Коммит a9442a9929
3 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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