From 4dbdaef4cf824e247f9bdc1336f69924b4dc80c0 Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Thu, 10 Jun 1999 05:49:17 +0000 Subject: [PATCH] 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 --- mozilla/mailnews/compose/src/nsMsgSendLater.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/mailnews/compose/src/nsMsgSendLater.h b/mozilla/mailnews/compose/src/nsMsgSendLater.h index 0b6c6167d51..6c657ea78cc 100644 --- a/mozilla/mailnews/compose/src/nsMsgSendLater.h +++ b/mozilla/mailnews/compose/src/nsMsgSendLater.h @@ -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 mMessageFolder; - nsCOMPtr mMessage; + nsCOMPtr mMessage; nsIFileSpec *mTempFileSpec; nsIEnumerator *mEnumerator; PRBool mFirstTime;