fix luxor's build bustage by adding nsIFolder and nsIFolderListener to IDL file list, which required regeneration of some header files

This commit is contained in:
alecf%netscape.com 1999-05-12 19:11:22 +00:00
Родитель 5f3c119868
Коммит e9169bdd5b
7 изменённых файлов: 5 добавлений и 16 удалений

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

@ -24,6 +24,7 @@ MODULE = mailnews
include $(DEPTH)/config/autoconf.mk
NO_GEN_XPT=1
XPIDLSRCS = \
nsIFolder.idl \
nsIMsgHost.idl \
nsIMsgFolder.idl \
nsIDOMMsgAppCore.idl \
@ -33,6 +34,7 @@ XPIDLSRCS = \
nsIMsgThread.idl \
nsIMsgMessageService.idl \
nsIUrlListener.idl \
nsIFolderListener.idl \
$(NULL)
EXPORTS = \

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

@ -14,7 +14,6 @@
#ifdef XPIDL_JS_STUBS
#include "jsapi.h"
#endif
class nsIFolderListener; /* forward decl */
/* starting interface: nsIFolder */
@ -45,6 +44,9 @@ class nsIFolder : public nsICollection {
/* nsIEnumerator GetSubFolders (); */
NS_IMETHOD GetSubFolders(nsIEnumerator **_retval) = 0;
/* readonly attribute boolean hasSubFolders; */
NS_IMETHOD GetHasSubFolders(PRBool *aHasSubFolders) = 0;
/* void AddFolderListener (in nsIFolderListener listener); */
NS_IMETHOD AddFolderListener(nsIFolderListener *listener) = 0;

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

@ -19,9 +19,6 @@
#include "nsICollection.idl"
#include "nsIFolderListener.idl"
interface nsIFolderListener;
interface nsICollection;
[uuid(361c89b0-c481-11d2-8614-000000000001)] /* XXX regenerate */
interface nsIFolder : nsICollection {

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

@ -6,10 +6,7 @@
#define __gen_nsIFolderListener_h__
#include "nsISupports.h" /* interface nsISupports */
#include "nsICollection.h" /* interface nsICollection */
#include "nsrootidl.h" /* interface nsrootidl */
#include "nsIEnumerator.h" /* interface nsIEnumerator */
#include "nsIFolder.h" /* interface nsIFolder */
#ifdef XPIDL_JS_STUBS
#include "jsapi.h"

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

@ -17,7 +17,6 @@
*/
#include "nsISupports.idl"
#include "nsIFolder.idl"
interface nsIFolder;

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

@ -15,8 +15,6 @@ class nsIURL; /* forward decl */
class nsIUrlListener; /* forward decl */
class nsIStreamListener; /* forward decl */
/* starting interface: nsIMsgMessageService */
/* {F11009C1-F697-11d2-807F-006008128C4E} */

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

@ -24,12 +24,6 @@ interface nsIURL;
interface nsIUrlListener;
interface nsIStreamListener;
%{C++
#include "nsIStreamListener.h"
%}
[uuid(F11009C1-F697-11d2-807F-006008128C4E)]
interface nsIMsgMessageService : nsISupports {