From 74757bed6ec7fb79f5fa9e421fcbe2dc7ebe47d6 Mon Sep 17 00:00:00 2001 From: "jefft%netscape.com" Date: Sat, 26 Jun 1999 18:19:33 +0000 Subject: [PATCH] added one more parameter, nsresult result, to NotifyCompletion() --- mailnews/base/public/nsIMsgCopyService.idl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mailnews/base/public/nsIMsgCopyService.idl b/mailnews/base/public/nsIMsgCopyService.idl index 8326b820646..55e2bc672a8 100644 --- a/mailnews/base/public/nsIMsgCopyService.idl +++ b/mailnews/base/public/nsIMsgCopyService.idl @@ -16,6 +16,7 @@ * Reserved. */ +#include "nsrootidl.idl" #include "nsISupports.idl" #include "nsIMsgFolder.idl" #include "nsIFileSpec.idl" @@ -64,8 +65,10 @@ interface nsIMsgCopyService : nsISupports { * aSupport -- the originator of CopyMessages or CopyFileMessage; it can * be either a nsIMsgFolder or a nsIFileSpec * dstFolder -- the destination folder which performs the copy operation + * result -- the result of the copy operation */ void NotifyCompletion(in nsISupports aSupport, - in nsIMsgFolder dstFolder); + in nsIMsgFolder dstFolder, + in nsresult result); };