From 51ef58fbaeec67fad1c7805995bc1e253a042aae Mon Sep 17 00:00:00 2001 From: "ducarroz%netscape.com" Date: Thu, 10 Jun 1999 02:01:37 +0000 Subject: [PATCH] remove any use of nsMsgCompose (it's the old one nsMsgCompose will conflic with the new one I will add soon!) git-svn-id: svn://10.0.0.236/trunk@34538 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/compose/src/nsMsgAttachmentHandler.cpp | 4 ++-- mozilla/mailnews/compose/src/nsMsgTransition.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mozilla/mailnews/compose/src/nsMsgAttachmentHandler.cpp b/mozilla/mailnews/compose/src/nsMsgAttachmentHandler.cpp index 6d3217a326d..c6465381083 100644 --- a/mozilla/mailnews/compose/src/nsMsgAttachmentHandler.cpp +++ b/mozilla/mailnews/compose/src/nsMsgAttachmentHandler.cpp @@ -240,7 +240,7 @@ JFD */ // The only time we want to send just the data fork of a two-fork // Mac file is if uuencoding has been requested. NS_ASSERTION(UseUUEncode_p(), "not UseUUEncode_p"); - if (!((nsMsgCompose *) m_mime_delivery_state->m_pane)->m_confirmed_uuencode_p) +//JFD if (!((nsMsgCompose *) m_mime_delivery_state->m_pane)->m_confirmed_uuencode_p) { #ifdef UNREADY_CODE PRBool confirmed = FE_Confirm(m_mime_delivery_state->m_pane->GetContext(), @@ -250,7 +250,7 @@ JFD */ #endif // only want to do this once - ((nsMsgCompose *) m_mime_delivery_state->m_pane)->m_confirmed_uuencode_p = PR_TRUE; +//JFD ((nsMsgCompose *) m_mime_delivery_state->m_pane)->m_confirmed_uuencode_p = PR_TRUE; if (! confirmed) // cancelled return MK_INTERRUPTED; diff --git a/mozilla/mailnews/compose/src/nsMsgTransition.h b/mozilla/mailnews/compose/src/nsMsgTransition.h index 56ae74b33bd..13c61a23a48 100644 --- a/mozilla/mailnews/compose/src/nsMsgTransition.h +++ b/mozilla/mailnews/compose/src/nsMsgTransition.h @@ -59,6 +59,7 @@ HJ08142 class MSG_NewsHost; class MSG_HTMLRecipients; +#if 0 class nsMsgCompose : public nsIMsgCompose, public MSG_Pane { public: @@ -314,4 +315,6 @@ protected: // to plain text }; +#endif + #endif /* _MsgCompose_H_ */