Fix for SunOS build. we were using a nsCOMPtr on two interfaces without explicitly including the interface header file.

git-svn-id: svn://10.0.0.236/trunk@34577 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com
1999-06-10 05:49:17 +00:00
parent 0b8541733b
commit 4dbdaef4cf

View File

@@ -22,6 +22,8 @@
#include "nsIMsgIdentity.h"
#include "nsIMsgSendLater.h"
#include "nsIEnumerator.h"
#include "nsIMsgFolder.h"
#include "nsIMessage.h"
#include "nsIFileSpec.h"
class nsMsgSendLater: public nsIMsgSendLater
@@ -44,7 +46,7 @@ private:
// Private Information
nsIMsgIdentity *mIdentity;
nsCOMPtr<nsIMsgFolder> mMessageFolder;
nsCOMPtr<nsIMessage> mMessage;
nsCOMPtr<nsIMessage> mMessage;
nsIFileSpec *mTempFileSpec;
nsIEnumerator *mEnumerator;
PRBool mFirstTime;