Part of fix for bug 17771. Add class nsIMsgRecipientArray. R=jefft

This commit is contained in:
ducarroz%netscape.com 1999-12-01 22:34:49 +00:00
Родитель 4121bdcf42
Коммит f43c28181f
8 изменённых файлов: 28 добавлений и 7 удалений

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

@ -153,4 +153,13 @@
{ 0xa623746c, 0x453b, 0x11d3, \
{ 0x8f, 0xf, 0x0, 0xa0, 0x24, 0xa7, 0xd1, 0x44 } }
//
// nsMsgRecipientArray
//
#define NS_MSGRECIPIENTARRAY_PROGID \
"component://netscape/messengercompose/recipientarray"
#define NS_MSGRECIPIENTARRAY_CID \
{0x9d653e00, 0xa1ca, 0x11d3, \
{ 0xa4, 0x49, 0xf7, 0x9a, 0xb1, 0xc7, 0xd8, 0xfc }}
#endif // nsMessageCompCID_h__

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

@ -53,6 +53,7 @@
#include "nsMsgCreate.h" // For drafts...I know, awful file name...
#include "nsSmtpServer.h"
#include "nsIContentHandler.h"
#include "nsMsgRecipientArray.h"
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSmtpService);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSmtpServer);
@ -66,6 +67,7 @@ NS_GENERIC_FACTORY_CONSTRUCTOR(nsMsgQuote);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMsgQuoteListener);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSmtpUrl);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMailtoUrl);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMsgRecipientArray);
////////////////////////////////////////////////////////////
//
@ -128,7 +130,11 @@ static nsModuleComponentInfo components[] =
{ "Msg Quote Listener",
NS_MSGQUOTELISTENER_CID,
NS_MSGQUOTELISTENER_PROGID,
nsMsgQuoteListenerConstructor }
nsMsgQuoteListenerConstructor },
{ "Msg Recipient Array",
NS_MSGRECIPIENTARRAY_CID,
NS_MSGRECIPIENTARRAY_PROGID,
nsMsgRecipientArrayConstructor }
};

Двоичные данные
mailnews/compose/macbuild/msgCompose.mcp

Двоичный файл не отображается.

Двоичные данные
mailnews/compose/macbuild/msgComposeIDL.mcp

Двоичный файл не отображается.

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

@ -45,6 +45,7 @@ XPIDLSRCS = \
nsIMsgSend.idl \
nsIMsgSendLater.idl \
nsIMsgDraft.idl \
nsIMsgRecipientArray.idl \
nsISmtpServer.idl \
nsISmtpUrl.idl \
nsISmtpService.idl \

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

@ -29,12 +29,13 @@ XPIDLSRCS = \
.\nsIMsgQuote.idl \
.\nsIMsgSendListener.idl \
.\nsIMsgSendLaterListener.idl \
.\nsIMsgSend.idl \
.\nsIMsgSendLater.idl \
.\nsIMsgDraft.idl \
.\nsISmtpServer.idl \
.\nsISmtpUrl.idl \
.\nsISmtpService.idl \
.\nsIMsgSend.idl \
.\nsIMsgSendLater.idl \
.\nsIMsgRecipientArray.idl \
.\nsIMsgDraft.idl \
.\nsISmtpServer.idl \
.\nsISmtpUrl.idl \
.\nsISmtpService.idl \
$(NULL)
################################################################################

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

@ -49,6 +49,7 @@ CPPSRCS = \
nsMsgComposeService.cpp \
nsMsgCompose.cpp \
nsMsgQuote.cpp \
nsMsgRecipientArray.cpp \
nsURLFetcher.cpp \
nsSmtpServer.cpp \
$(NULL)
@ -71,6 +72,7 @@ EXPORTS = \
nsMsgAttachmentHandler.h \
nsMsgPrompts.h \
nsMsgQuote.h \
nsMsgRecipientArray.h \
nsURLFetcher.h \
nsMsgSend.h \
nsSmtpServer.h \

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

@ -41,6 +41,7 @@ EXPORTS= nsSmtpUrl.h \
nsMsgCompose.h \
nsMsgCompFields.h \
nsMsgQuote.h \
nsMsgRecipientArray.h \
nsURLFetcher.h \
nsSmtpServer.h \
$(NULL)
@ -69,6 +70,7 @@ CPP_OBJS= .\$(OBJDIR)\nsMsgCompFields.obj \
.\$(OBJDIR)\nsMsgAttachmentHandler.obj \
.\$(OBJDIR)\nsMsgPrompts.obj \
.\$(OBJDIR)\nsMsgQuote.obj \
.\$(OBJDIR)\nsMsgRecipientArray.obj \
.\$(OBJDIR)\nsURLFetcher.obj \
.\$(OBJDIR)\nsSmtpServer.obj \
$(NULL)