From 5daada9f2cb802c4c568878789beb77b719f83ee Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Thu, 28 Oct 1999 04:21:02 +0000 Subject: [PATCH] Bug #16927 add nsIMsgQuoteListener interface r=rhp git-svn-id: svn://10.0.0.236/trunk@52053 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/compose/public/nsIMsgQuote.idl | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/mozilla/mailnews/compose/public/nsIMsgQuote.idl b/mozilla/mailnews/compose/public/nsIMsgQuote.idl index 195d4b5c1b1..dd8ece1fa01 100644 --- a/mozilla/mailnews/compose/public/nsIMsgQuote.idl +++ b/mozilla/mailnews/compose/public/nsIMsgQuote.idl @@ -18,11 +18,7 @@ #include "nsISupports.idl" #include "nsIStreamListener.idl" #include "nsIChannel.idl" - -%{ C++ -%} - -interface nsIMimeStreamConverterListener; +#include "nsIMimeStreamConverter.idl" [scriptable, uuid(1C7ABF0C-21E5-11d3-8EF1-00A024A7D144)] interface nsIMsgQuote : nsISupports { @@ -34,5 +30,14 @@ interface nsIMsgQuote : nsISupports { nsIStreamListener aStreamListener); readonly attribute nsIMimeStreamConverterListener quoteListener; readonly attribute nsIChannel quoteChannel; + readonly attribute nsIStreamListener streamListener; }; +[scriptable, uuid(1EC75AD9-88DE-11d3-989D-001083010E9B)] +interface nsIMsgQuoteListener : nsIMimeStreamConverterListener +{ + attribute nsIMsgQuote msgQuote; +}; + + +